From bc93a20bdce3fcf6a8f4ba2da7e24aa7d4e8f08b Mon Sep 17 00:00:00 2001 From: benard Date: Fri, 20 Dec 2024 22:14:38 +0100 Subject: [PATCH] chore: remove comments and .vscode folder for code cleanup --- .vscode/settings.json | 3 --- frontend/src/App.jsx | 1 - frontend/src/pages/spotnet/home/Home.jsx | 1 - 3 files changed, 5 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index f61ce2fd..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "cSpell.words": ["Spotnet"] -} diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index a698eeed..ae694c73 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -25,7 +25,6 @@ import PositionHistory from 'pages/spotnet/position_history/PositionHistory'; function App() { const { walletId, setWalletId, removeWalletId } = useWalletStore(); const [showModal, setShowModal] = useState(false); - // const [currentPage, setCurrentPage] = useState('home'); const navigate = useNavigate(); const [isMobileRestrictionModalOpen, setisMobileRestrictionModalOpen] = useState(true); const isMobile = useCheckMobile(); diff --git a/frontend/src/pages/spotnet/home/Home.jsx b/frontend/src/pages/spotnet/home/Home.jsx index d57c193c..f5bd1e30 100644 --- a/frontend/src/pages/spotnet/home/Home.jsx +++ b/frontend/src/pages/spotnet/home/Home.jsx @@ -15,7 +15,6 @@ function Home() { const navigate = useNavigate(); const handleLaunchApp = async () => { - console.log('Launch button clicked'); // Debugging if (walletId) { navigate('/form'); } else {