Fixed compile error and removed debug server connection handler
parent
712b311da4
commit
db9711cf12
|
@ -192,15 +192,6 @@ function main() {
|
|||
initial_handler.acquireInputHardware().then(() => {});
|
||||
server_connections.set_active_connection(initial_handler);
|
||||
|
||||
/* Just a test */
|
||||
{
|
||||
server_connections.spawn_server_connection();
|
||||
server_connections.spawn_server_connection();
|
||||
server_connections.spawn_server_connection();
|
||||
server_connections.spawn_server_connection();
|
||||
server_connections.spawn_server_connection();
|
||||
}
|
||||
|
||||
/** Setup the XF forum identity **/
|
||||
fidentity.update_forum();
|
||||
keycontrol.initialize();
|
||||
|
|
|
@ -48,7 +48,7 @@ const ConnectionHandler = (props: { handlerId: string, active: boolean }) => {
|
|||
break;
|
||||
|
||||
case "connecting":
|
||||
displayedName = <Translatable key={"connecting"}>Connecting to server <LoadingDots /></Translatable>;
|
||||
displayedName = <><Translatable key={"connecting"}>Connecting to server</Translatable> <LoadingDots /></>;
|
||||
break;
|
||||
|
||||
case "disconnected":
|
||||
|
|
Loading…
Reference in New Issue