Update words.ts

This commit is contained in:
Jacob Louis Hoover 2022-01-26 18:10:42 -05:00 committed by GitHub
parent f6f16b1dc6
commit 3478533926
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ export const getWordOfDay = () => {
const nextday = (index + 1) * msInDay + epochMs
return {
solution: WORDS[index % WORDS.length].toUpperCase()
solution: WORDS[index % WORDS.length].toUpperCase(),
solutionIndex: index,
tomorrow: nextday,
}