aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/root-helpers
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/root-helpers')
-rw-r--r--client/src/root-helpers/utils.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/root-helpers/utils.ts b/client/src/root-helpers/utils.ts
index e32187ddb..06591b95e 100644
--- a/client/src/root-helpers/utils.ts
+++ b/client/src/root-helpers/utils.ts
@@ -57,7 +57,7 @@ function importModule (path: string) {
57} 57}
58 58
59function wait (ms: number) { 59function wait (ms: number) {
60 return new Promise(res => { 60 return new Promise<void>(res => {
61 setTimeout(() => res(), ms) 61 setTimeout(() => res(), ms)
62 }) 62 })
63} 63}