From d3ec3ed14c47b9da307dbaba2ebf3713e50a1191 Mon Sep 17 00:00:00 2001 From: 0age <37939117+0age@users.noreply.github.com> Date: Mon, 9 Dec 2024 10:05:43 -0800 Subject: [PATCH] hide "Create Allocation" component --- frontend/src/App.tsx | 6 ------ 1 file changed, 6 deletions(-) diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 2541068..d4da0a6 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -20,7 +20,6 @@ import { useState, useMemo } from 'react'; import { WalletConnect } from './components/WalletConnect'; import { SessionManager } from './components/SessionManager'; import { BalanceDisplay } from './components/BalanceDisplay'; -import { CreateAllocation } from './components/CreateAllocation'; import HealthCheck from './components/HealthCheck'; import { DepositForm } from './components/DepositForm'; import { NotificationProvider } from './context/NotificationProvider'; @@ -129,11 +128,6 @@ function App() { )} - - {/* Create Allocation Form */} - {sessionToken && ( - - )}