fix build complaints

This commit is contained in:
Gavin McDonald
2025-04-19 12:57:31 -04:00
parent 48bc2533c5
commit c3b09fc092
6 changed files with 24 additions and 61 deletions

View File

@@ -25,6 +25,7 @@ export default function GamePage() {
positionFront: false,
prophecy: false,
notes: false,
cardStyle: 'color',
},
});
@@ -82,7 +83,7 @@ export default function GamePage() {
// map our five Tarokka cards to their proper locations in a 3x3 grid
// common deck cards: left, top, and right
// high deck cards: bottom and center
const arrangeCards = (_cell: any, index: number) => cards[cardMap[index]];
const arrangeCards = (_cell: unknown, index: number) => cards[cardMap[index]];
return noGame ? (
<NotFound />