Skip to content
This repository has been archived by the owner on Aug 9, 2023. It is now read-only.

Commit

Permalink
fix: choices
Browse files Browse the repository at this point in the history
  • Loading branch information
crimsonf09 committed Aug 4, 2023
1 parent d67037d commit 301bb99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Game/lib/GameContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function ChoicesButton({
);
} else if (choices.length === 2) {
return (
<div className="mx-auto my-10 flex justify-center text-sm font-extralight">
<div className="w- mx-auto my-10 flex justify-center gap-2 text-sm font-extralight">
<Button
content={choices[0].message}
onClick={() => {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/game/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Score from '@/components/Game/lib/Score';

const GameLogic = () => {
const { user } = useAuth();
const [page, setPage] = useState<string>('Game45');
const [page, setPage] = useState<string>('Game01');
<GameContainer
scene={{
id: page,
Expand Down

0 comments on commit 301bb99

Please sign in to comment.