We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 536c45c commit 8c3089dCopy full SHA for 8c3089d
GomokuClient/packages/gomoku-story/src/components/GameOptionsButton/GameOptionsButton.tsx
@@ -49,8 +49,9 @@ export const GameOptionsButtons = ({
49
<GameCreatorButton onCreateGame={onCreate.game} isLoading={loading?.game}>
50
<GameButton text={text?.game} loading={loading?.game} />
51
</GameCreatorButton>
52
+ {/*TODO should map entire object of text props intead*/}
53
<GameCreatorButton onCreateGame={onCreate.ai} isLoading={loading?.ai}>
- <GameButton text="PLAY WITH AI" loading={loading?.ai} />
54
+ <GameButton text="PLAY LOCAL" loading={loading?.ai} />
55
56
</div>
57
);
0 commit comments