From 4a58f2e98b08badc812f3802dfe1462cf4dfa04b Mon Sep 17 00:00:00 2001 From: Maieul BOYER Date: Mon, 22 Dec 2025 18:38:11 +0100 Subject: [PATCH] fixed crashing all services --- src/@shared/src/database/mixin/tictactoe.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/@shared/src/database/mixin/tictactoe.ts b/src/@shared/src/database/mixin/tictactoe.ts index 5cb3e7d..f09420d 100644 --- a/src/@shared/src/database/mixin/tictactoe.ts +++ b/src/@shared/src/database/mixin/tictactoe.ts @@ -31,10 +31,10 @@ export const TicTacToeImpl: Omit = { // }, }; -export type TicTacToeId = number & { readonly __brand: unique symbol }; +export type GameId = number & { readonly __brand: unique symbol }; export type TicTacToeData = { - readonly id: TicTacToeId; + readonly id: GameId; readonly player1: string; readonly player2: string; readonly outcome: string; @@ -51,4 +51,4 @@ export type TicTacToeData = { // } // silence warnings -void privateFunction; +// void privateFunction;