diff --git a/app/[gameID]/page.tsx b/app/[gameID]/page.tsx index 4ab833e..525f580 100644 --- a/app/[gameID]/page.tsx +++ b/app/[gameID]/page.tsx @@ -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 ? ( diff --git a/components/NotFound.tsx b/components/NotFound.tsx index e209856..9bd6b3d 100644 --- a/components/NotFound.tsx +++ b/components/NotFound.tsx @@ -5,7 +5,7 @@ export default function Custom404() {

404 - Game Not Found

- The game you're looking for doesn't exist or has expired. + The game you’re looking for doesn’t exist or has expired.