aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/Login.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/Login.tsx')
-rw-r--r--frontend/src/components/Login.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/Login.tsx b/frontend/src/components/Login.tsx
index ba2cd96..b62acea 100644
--- a/frontend/src/components/Login.tsx
+++ b/frontend/src/components/Login.tsx
@@ -29,7 +29,7 @@ export default function Login() {
const data = await res.json();
setError(data.message || 'Login failed');
}
- } catch (err) {
+ } catch (_err) {
setError('Network error');
}
};