Skip to content

Commit 320e152

Browse files
committed
xo: Fix unicorn/numeric-separators-style.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent c00d0ab commit 320e152

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/renderer/js/utils/link-util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,6 @@ export async function openBrowser(url: URL): Promise<void> {
4040
setTimeout(() => {
4141
fs.unlinkSync(file);
4242
fs.rmdirSync(dir);
43-
}, 15000);
43+
}, 15_000);
4444
}
4545
}

app/renderer/js/utils/reconnect-util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default class ReconnectUtil {
2121
this.alreadyReloaded = false;
2222
this.fibonacciBackoff = backoff.fibonacci({
2323
initialDelay: 5000,
24-
maxDelay: 300000,
24+
maxDelay: 300_000,
2525
});
2626
}
2727

0 commit comments

Comments
 (0)