style: fix unused variable warnings

Prefix unused error variables with underscore to indicate
intentionally unused catch parameters.
This commit is contained in:
2026-04-06 23:27:32 -04:00
parent bd861e56c0
commit 5922a835cb
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ export default function SignIn() {
try {
await signOut()
router.push("/")
} catch (error) {
} catch (_error) {
toast.error("Failed to sign out. Please try again.")
}
}