diff --git a/src/lib/words.ts b/src/lib/words.ts index f75cf20..d7ba92e 100644 --- a/src/lib/words.ts +++ b/src/lib/words.ts @@ -14,11 +14,7 @@ export const isWinningWord = (word: string) => { export const getWordOfDay = () => { // January 1, 2022 Game Epoch - const epochMs = 1641013200000 - const now = Date.now() - const msInDay = 86400000 - const index = Math.floor((now - epochMs) / msInDay) - + return { solution: WORDS[0].toUpperCase(), solutionIndex: 0,