Rebrand to kaboot

This commit is contained in:
Joey Yakimowich-Payne 2026-01-13 10:59:50 -07:00
commit 8a8ec9bc0e
No known key found for this signature in database
GPG key ID: DDF6AF5B21B407D4
8 changed files with 59 additions and 27 deletions

View file

@ -55,7 +55,8 @@ function App() {
currentCorrectShape,
selectedOption,
currentPlayerScore,
currentStreak
currentStreak,
currentPlayerId
} = useGame();
const currentQ = quiz?.questions[currentQuestionIndex];
@ -90,7 +91,7 @@ function App() {
{gameState === 'LOBBY' ? (
<Lobby
quizTitle={quiz?.title || 'OpenHoot'}
quizTitle={quiz?.title || 'Kaboot'}
players={players}
gamePin={gamePin}
role={role}
@ -138,6 +139,7 @@ function App() {
players={players}
onNext={nextQuestion}
isHost={role === 'HOST'}
currentPlayerId={currentPlayerId}
/>
) : null}