From 1a995e32c8468d35e88b4e9618458f0cb29ae3c5 Mon Sep 17 00:00:00 2001 From: soryu Date: Wed, 3 Jun 2026 19:45:41 +0100 Subject: feat: soryu - soryu.co: Remove Login button from LandingPage --- frontend/src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontend/src/App.tsx') 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 ? ( ) : ( - + )} ) -- cgit v1.2.3