From a2df9ea2379650991eeed196faa5aae382d5c700 Mon Sep 17 00:00:00 2001 From: mindesbunister Date: Mon, 14 Jul 2025 00:26:37 +0200 Subject: [PATCH] fix: Configure React dependencies and verify navigation - Properly organize React dependencies in package.json - Move @types/react-dom to devDependencies - Verify all navigation pages are working correctly: * Overview page (/) with status indicators and quick actions * Analysis page (/analysis) with AI analysis panel * Trading page (/trading) with trading panel and history * Automation page (/automation) with auto-trading settings * Settings page (/settings) with developer config - App successfully builds and runs on port 9000:3000 in Docker container --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 73cb4bd..829f052 100644 --- a/package.json +++ b/package.json @@ -40,7 +40,6 @@ "@drift-labs/sdk": "^2.126.0-beta.14", "@prisma/client": "^6.11.1", "@solana/web3.js": "^1.98.2", - "@types/react-dom": "^19.1.6", "bs58": "^6.0.0", "dotenv": "^17.2.0", "next": "15.3.5", @@ -56,6 +55,7 @@ "@eslint/eslintrc": "^3", "@types/node": "^20", "@types/react": "^19", + "@types/react-dom": "^19.1.6", "autoprefixer": "^10.4.20", "eslint": "^9", "eslint-config-next": "15.3.5",