diff --git a/website/src/repl/util.mjs b/website/src/repl/util.mjs index 04f137c1..8d8cfba4 100644 --- a/website/src/repl/util.mjs +++ b/website/src/repl/util.mjs @@ -137,7 +137,7 @@ export const ReplContext = createContext(null); export const isUdels = () => { const isIframe = window.location !== window.parent.location; if (isIframe) { - return false + return false; } return window.parent?.location?.pathname.includes('udels'); };