Skip to content

Commit 4aa7d53

Browse files
committed
fix revert test
1 parent 93e75d5 commit 4aa7d53

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

21/index.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,7 @@ type TicTacToe<
9898
ColumnIndex[Column]
9999
> extends infer NewBoard extends TicTacToeBoard
100100
? {
101-
board: SelectSquare<
102-
Game["board"],
103-
Game["state"],
104-
RowIndex[Row],
105-
ColumnIndex[Column]
106-
>;
101+
board: NewBoard;
107102
state: EvalState<NewBoard, Game["state"]>;
108103
}
109104
: never

0 commit comments

Comments
 (0)