Skip to content

Commit 5eaaeee

Browse files
committed
Fixed bugs with AI
1 parent 157041e commit 5eaaeee

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.idx/integrations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"firebase_hosting": {},
3+
"cloud_run_deploy": {},
34
"secrets_manager": {}
45
}

src/Board/Piece.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useCallback, forwardRef, type DragEventHandler } from "react";
2-
import { playCheckerSound } from '../../Utils';
2+
import { playCheckerSound } from '../Utils';
33
import black from './images/piece-black-2.png';
44
import white from './images/piece-white-2.png';
55
import './Piece.css'

src/Board/Point.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useCallback, useRef, useState, type DragEventHandler } from "react";
2-
import { playCheckerSound } from '../../Utils';
2+
import { playCheckerSound } from '../Utils';
33
import Piece from './Piece'
44

55
type PointProps = {

0 commit comments

Comments
 (0)