diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-11-08 16:09:01 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-11-08 16:09:37 +0900 |
| commit | 2c81ffffaaee816f271b1bfe488e64d0288050fc (patch) | |
| tree | 47c560c5d88bd16b3cec410bb53df17cd2cad363 /frontend/src/components/Navigation.tsx | |
| parent | 603419f4b43d0c36e3f6bbaf9f4ffc20f316a8aa (diff) | |
| download | feedaka-2c81ffffaaee816f271b1bfe488e64d0288050fc.tar.gz feedaka-2c81ffffaaee816f271b1bfe488e64d0288050fc.tar.zst feedaka-2c81ffffaaee816f271b1bfe488e64d0288050fc.zip | |
fix(frontend): Don't discard GraphQL error
Diffstat (limited to 'frontend/src/components/Navigation.tsx')
| -rw-r--r-- | frontend/src/components/Navigation.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/Navigation.tsx b/frontend/src/components/Navigation.tsx index 6ae493f..4d41d32 100644 --- a/frontend/src/components/Navigation.tsx +++ b/frontend/src/components/Navigation.tsx @@ -34,7 +34,7 @@ export function Navigation() { type="button" onClick={handleLogout} className="flex items-center space-x-2 text-gray-600 hover:text-gray-900" - title={`Logout (${user.username})`} + title="Logout" > <FontAwesomeIcon icon={faRightFromBracket} /> <span className="hidden sm:inline">Logout</span> |
