diff --git a/src/lib/chess/types.ts b/src/lib/chess/types.ts index 7f943e9..679d494 100644 --- a/src/lib/chess/types.ts +++ b/src/lib/chess/types.ts @@ -1,4 +1,4 @@ -import { Game } from "./utils"; +import { Game } from "./game"; export type GameListener = (board: Game) => void; export enum Piece { diff --git a/src/routes/+page.svelte b/src/routes/+page.svelte index ea6797a..51577d3 100644 --- a/src/routes/+page.svelte +++ b/src/routes/+page.svelte @@ -1,6 +1,6 @@