We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 280837f commit 302a47eCopy full SHA for 302a47e
src/caches/GameSlice.ts
@@ -93,8 +93,6 @@ export const getIsDoublesGame = createSelector(
93
export const getIsMyGo = createSelector(getGame, game => game.isMyGo)
94
export const getIamGoer = createSelector(getGame, game => game.iamGoer)
95
export const getIHavePlayed = createSelector(getGame, game => {
96
- if (game.iamGoer) return false
97
-
98
const myPosition = game.players.findIndex(p => p.id === game.me?.id)
99
const currentPlayerPosition = game.players.findIndex(
100
p => p.id === game.round?.currentHand.currentPlayerId,
0 commit comments