summaryrefslogtreecommitdiff
path: root/frontend/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/App.tsx')
-rw-r--r--frontend/src/App.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 0a0e008..9a84b3b 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -2,7 +2,7 @@ import React from 'react'
import { useStore } from '@nanostores/react'
import { LandingPage } from './components/LandingPage'
import { VNInterface } from './components/VNInterface'
-import { isLoggedInStore, login, logout } from './stores'
+import { isLoggedInStore, logout } from './stores'
export default function App() {
const isLoggedIn = useStore(isLoggedInStore)
@@ -12,7 +12,7 @@ export default function App() {
{isLoggedIn ? (
<VNInterface onLogout={logout} />
) : (
- <LandingPage onLogin={login} />
+ <LandingPage />
)}
</>
)