We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89fec51 commit 3c8c7b7Copy full SHA for 3c8c7b7
typescript-packages/client/src/hooks/router/RouterHook.tsx
@@ -97,8 +97,7 @@ class RouterHook extends Logger {
97
await this.waitForUnlock();
98
let routerNode = findRouterNode();
99
while (!routerNode) {
100
- this.warn('Failed to find GamepadUI Router node, reattempting in 5 seconds.');
101
- await sleep(5000);
+ await sleep(1);
102
103
routerNode = findRouterNode();
104
}
@@ -133,7 +132,6 @@ class RouterHook extends Logger {
133
132
});
134
135
136
- this.warn('Failed to find DesktopUI Router node, reattempting in 5 seconds.');
137
await sleep(1);
138
139
0 commit comments