Skip to content

Commit

Permalink
Progress
Browse files Browse the repository at this point in the history
  • Loading branch information
System625 committed Dec 20, 2024
1 parent 652fe60 commit eefbe23
Show file tree
Hide file tree
Showing 3 changed files with 2,503 additions and 2 deletions.
1 change: 1 addition & 0 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@tanstack/eslint-plugin-query": "^5.60.1",
"@testing-library/jest-dom": "^6.6.2",
"@types/jest": "^29.5.14",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect } from 'react';
import { Routes, Route, Navigate, useNavigate } from 'react-router-dom';
import { Routes, Route, useNavigate } from 'react-router-dom';
import './globals.css';
import Header from './components/layout/header/Header';
import Dashboard from './pages/dashboard/Dashboard';
Expand All @@ -23,7 +23,7 @@ import PositionHistory from './pages/position-history/PositionHistory';


function App() {
const { walletId, setWalletId, removeWalletId } = useWalletStore();
const { setWalletId, removeWalletId } = useWalletStore();
const [showModal, setShowModal] = useState(false);
const navigate = useNavigate();
const [isMobileRestrictionModalOpen, setisMobileRestrictionModalOpen] = useState(true);
Expand Down
Loading

0 comments on commit eefbe23

Please sign in to comment.