summaryrefslogtreecommitdiff
path: root/frontend/src/App.tsx
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-06-03 19:45:41 +0100
committersoryu <soryu@soryu.co>2026-06-03 19:45:41 +0100
commit1a995e32c8468d35e88b4e9618458f0cb29ae3c5 (patch)
tree6b65796a244f0ddf4fc473607a9bfccd1f36d789 /frontend/src/App.tsx
parentf13352a3a5860477957d16b7ce00169d385f56da (diff)
downloadsoryu-makima/directive-soryu---soryu-co-78ae2579.tar.gz
soryu-makima/directive-soryu---soryu-co-78ae2579.zip
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 />
)}
</>
)