Skip to content

Commit

Permalink
fix: set var to unused for now
Browse files Browse the repository at this point in the history
  • Loading branch information
timeowilliams committed Sep 19, 2024
1 parent f45c6f7 commit 64ea4cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/src/Login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export type AuthForm = InferInput<typeof AuthSchema>

function Login() {
const [authForm, { Form, Field }] = createForm<AuthForm>()
const [loginError, setLoginError] = createSignal<null | string>(null)
const [_loginError, setLoginError] = createSignal<null | string>(null)
const navigate = useNavigate()

const handleSubmit: SubmitHandler<AuthForm> = async (values) => {
Expand Down

0 comments on commit 64ea4cc

Please sign in to comment.