fix score leaderboard staying open when switching sort/page
Some checks failed
Deploy Backend / deploy (push) Failing after 1m27s
Deploy Website / deploy (push) Failing after 1m32s

This commit is contained in:
Lee
2024-10-17 03:08:27 +01:00
parent 42d133bbbb
commit c64f046df3
9 changed files with 34 additions and 10 deletions

View File

@ -7,6 +7,13 @@ export function isProduction() {
return process.env.NODE_ENV === "production";
}
/**
* Checks if we're running on the server
*/
export function isServer() {
return typeof window === "undefined";
}
/**
* Delays a promise
*