diff --git a/src/App.svelte b/src/App.svelte index 86587a3..9274a4f 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -233,8 +233,6 @@ masked.forEach(idx => nMask[idx] = 0) console.log('Solution does not match') } - // setTimeout(() => editModeReduce(zeros, n - 1), 100) - // } else setTimeout(() => editModeReduce(zeros, n), 100) console.log(nMask) } diff --git a/src/Launcher.svelte b/src/Launcher.svelte index b57c347..06212a4 100644 --- a/src/Launcher.svelte +++ b/src/Launcher.svelte @@ -10,7 +10,7 @@ let error: string | null = null; if (!edit) { - if (!puzzleId) window.location.href = "/?puzzle=meow"; + if (!puzzleId) window.location.href = "/?puzzle=heart"; else Backend.get(puzzleId).then((data) => (puzzleData = data)).catch(e => (error = e)); } @@ -23,7 +23,7 @@