Compare commits

...

2 Commits

Author SHA1 Message Date
fchinembiri 8e54fc7f23 merge: sync with remote
Build and Push Docker Images / build-and-push (push) Failing after 22s Details
2026-04-28 17:58:54 +02:00
fchinembiri 837c5a5121 chore: trigger build for web app 2026-04-28 17:48:14 +02:00
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import TechnicalDocs from './TechnicalDocs'
type ViewState = 'welcome' | 'login' | 'app' | 'admin' | 'portfolio'
// App entry point for GeoCrop Web
function App() {
const [view, setView] = useState<ViewState>('welcome')
const [isAdmin, setIsAdmin] = useState<boolean>(localStorage.getItem('isAdmin') === 'true')