From b7deb6204f6ccc066bf89fe8edd06109ae0b52a0 Mon Sep 17 00:00:00 2001 From: SmartFlow Developer Date: Sat, 17 Jan 2026 12:49:21 +0100 Subject: [PATCH] Fix duplicate Difficulty type definition by importing from sudoku lib --- src/types/game.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/types/game.ts b/src/types/game.ts index 6193265..0927699 100644 --- a/src/types/game.ts +++ b/src/types/game.ts @@ -1,6 +1,4 @@ -import { SudokuGrid } from '../lib/sudoku'; - -export type Difficulty = 'easy' | 'medium' | 'hard'; +import { SudokuGrid, Difficulty } from '../lib/sudoku'; export interface GameSession { id: string;