aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/src/App.tsx2
-rw-r--r--frontend/src/components/Navigation.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 58b6687..16fad2b 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -12,7 +12,7 @@ function App() {
return (
<Switch>
<Route path="/login" component={Login} />
- <Route path="*">
+ <Route>
<ProtectedRoute>
<Layout>
<Switch>
diff --git a/frontend/src/components/Navigation.tsx b/frontend/src/components/Navigation.tsx
index d6e20c9..6ae493f 100644
--- a/frontend/src/components/Navigation.tsx
+++ b/frontend/src/components/Navigation.tsx
@@ -37,7 +37,7 @@ export function Navigation() {
title={`Logout (${user.username})`}
>
<FontAwesomeIcon icon={faRightFromBracket} />
- <span>Logout</span>
+ <span className="hidden sm:inline">Logout</span>
</button>
)}
</div>