diff options
Diffstat (limited to 'src/pages/DailyPage.tsx')
| -rw-r--r-- | src/pages/DailyPage.tsx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/pages/DailyPage.tsx b/src/pages/DailyPage.tsx index 24ac20c..d1482b1 100644 --- a/src/pages/DailyPage.tsx +++ b/src/pages/DailyPage.tsx @@ -69,7 +69,13 @@ export function DailyPage() { didGuess, skip, guess, - } = useGameState({ solution: todaysSolution?.song ?? null, persist: true }); + } = useGameState({ + solution: todaysSolution?.song ?? null, + persist: true, + sessionDate: todaysSolution?.date, + sessionToken: todaysSolution?.sessionToken, + initialSig: todaysSolution?.initialSig, + }); const [isInfoPopUpOpen, setIsInfoPopUpOpen] = React.useState<boolean>(firstRun); |
