Fixed compile error and removed debug server connection handler
This commit is contained in:
parent
f2a7f37c74
commit
f41febcb68
2 changed files with 1 additions and 10 deletions
|
@ -192,15 +192,6 @@ function main() {
|
||||||
initial_handler.acquireInputHardware().then(() => {});
|
initial_handler.acquireInputHardware().then(() => {});
|
||||||
server_connections.set_active_connection(initial_handler);
|
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 **/
|
/** Setup the XF forum identity **/
|
||||||
fidentity.update_forum();
|
fidentity.update_forum();
|
||||||
keycontrol.initialize();
|
keycontrol.initialize();
|
||||||
|
|
|
@ -48,7 +48,7 @@ const ConnectionHandler = (props: { handlerId: string, active: boolean }) => {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "connecting":
|
case "connecting":
|
||||||
displayedName = <Translatable key={"connecting"}>Connecting to server <LoadingDots /></Translatable>;
|
displayedName = <><Translatable key={"connecting"}>Connecting to server</Translatable> <LoadingDots /></>;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case "disconnected":
|
case "disconnected":
|
||||||
|
|
Loading…
Add table
Reference in a new issue