Skip to content

Commit 1551140

Browse files
committed
Revert "Merge branch 'dev' into main"
This reverts commit 0b75632.
1 parent cf6db21 commit 1551140

File tree

4 files changed

+61
-345
lines changed

4 files changed

+61
-345
lines changed

client/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
"@fortawesome/react-fontawesome": "^0.2.0",
3434
"@react-spring/three": "^9.5.2",
3535
"@react-spring/web": "^9.5.2",
36-
"@react-three/drei": "^9.23.1",
36+
"@react-three/drei": "^9.21.0",
3737
"@react-three/fiber": "^8.3.1",
3838
"@react-three/postprocessing": "^2.1.2",
3939
"@reduxjs/toolkit": "^1.8.4",
4040
"@reecelucas/react-use-hotkeys": "^1.3.1",
41-
"@use-gesture/react": "^10.2.18",
41+
"@use-gesture/react": "^10.2.4",
4242
"axios": "^0.24.0",
4343
"buzzwords-shared": "1.0.0",
4444
"classnames": "^2.3.1",
@@ -54,11 +54,11 @@
5454
"react-div-100vh": "^0.7.0",
5555
"react-dom": "^18.2.0",
5656
"react-helmet": "^6.1.0",
57-
"react-modal": "^3.15.1",
57+
"react-modal": "^3.14.4",
5858
"react-redux": "^8.0.2",
5959
"react-router-dom": "6",
6060
"react-stately": "^3.16.0",
61-
"react-tiny-popover": "^7.1.0",
61+
"react-tiny-popover": "^7.0.1",
6262
"react-toastify": "^8.1.0",
6363
"react-tooltip": "^4.2.21",
6464
"socket.io-client": "^4.4.0",
@@ -83,7 +83,7 @@
8383
"@types/zfont": "^1.2.0",
8484
"@typescript-eslint/eslint-plugin": "^4.28.0",
8585
"@typescript-eslint/parser": "^4.28.0",
86-
"@vitejs/plugin-react": "^2.0.1",
86+
"@vitejs/plugin-react-refresh": "^1.3.1",
8787
"autoprefixer": "^10.2.6",
8888
"cross-env": "^7.0.3",
8989
"electron": "20",

client/src/features/game/MoveList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export function MoveList({ id, mobileLayout }: MoveListProps) {
108108

109109
const moveListContent = (
110110
<>
111-
<h3 className="w-[200px] text-text">
111+
<h3 className="w-[200px]">
112112
<span className="text-2xl font-bold m-0">Moves</span>
113113
</h3>
114114
<div className="flex-auto w-full overflow-y-auto">

client/vite.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import react from '@vitejs/plugin-react'
1+
import reactRefresh from "@vitejs/plugin-react-refresh";
22
import electron from "vite-plugin-electron";
33
import { rmSync } from "fs";
44
import { join } from "path";
@@ -34,7 +34,7 @@ export default ({ command, mode }) => {
3434
},
3535
},
3636
plugins: [
37-
react(),
37+
reactRefresh(),
3838
process.env.DESKTOP
3939
? electron({
4040
main: {

0 commit comments

Comments
 (0)