Skip to content

Commit

Permalink
fix: update dependencies (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
exKAZUu authored Dec 18, 2024
1 parent 2f238f5 commit 39789bb
Show file tree
Hide file tree
Showing 3 changed files with 812 additions and 1,091 deletions.
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@
"@chakra-ui/react": "2.10.4",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@prisma/client": "6.0.1",
"@tanstack/react-query": "5.62.7",
"@prisma/client": "6.1.0",
"@tanstack/react-query": "5.62.8",
"@trpc/client": "11.0.0-rc.660",
"@trpc/next": "11.0.0-rc.660",
"@trpc/react-query": "11.0.0-rc.660",
Expand All @@ -60,17 +60,17 @@
"dayjs": "1.11.13",
"dotenv-cli": "7.4.4",
"fast-deep-equal": "3.1.3",
"framer-motion": "11.14.4",
"framer-motion": "11.15.0",
"immer": "10.1.1",
"jsonwebtoken": "9.0.2",
"jwks-rsa": "3.1.0",
"next": "15.1.0",
"next": "15.1.1",
"nextjs-cors": "2.2.0",
"nextjs-toploader": "3.7.15",
"pino": "9.5.0",
"pino-pretty": "13.0.0",
"pm2": "5.4.3",
"prisma": "6.0.1",
"prisma": "6.1.0",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-icons": "5.4.0",
Expand Down Expand Up @@ -99,15 +99,15 @@
"@types/react-syntax-highlighter": "15.5.13",
"@types/seedrandom": "3.0.8",
"@types/uuid": "10.0.0",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"@willbooster/eslint-config-next": "1.2.1",
"@willbooster/prettier-config": "9.1.3",
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"babel-plugin-react-compiler": "19.0.0-beta-201e55d-20241215",
"concurrently": "9.1.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.0",
"eslint-config-next": "15.1.0",
"eslint-config-next": "15.1.1",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import": "2.31.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const ProblemBody: React.FC<Props> = (props) => {
}, [previousTraceItemIndex]);

const { isOpen: isAlertOpen, onClose: onAlertClose, onOpen: onAlertOpen } = useDisclosure();
const cancelRef = useRef(null);
const cancelRef = useRef<HTMLButtonElement>(null);

const turtleGraphicsRef = useRef<TurtleGraphicsHandle>(null);

Expand Down Expand Up @@ -272,7 +272,7 @@ export const ProblemBody: React.FC<Props> = (props) => {
closeOnEsc={true}
closeOnOverlayClick={false}
isOpen={isAlertOpen}
leastDestructiveRef={cancelRef}
leastDestructiveRef={cancelRef as React.RefObject<HTMLElement>}
onClose={() => {
postAlertAction?.();
onAlertClose();
Expand Down
Loading

0 comments on commit 39789bb

Please sign in to comment.