Skip to content

Commit 342c3d7

Browse files
committed
lint
1 parent 4e42702 commit 342c3d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/components/Alert/ErrorAlert.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { FC, useEffect } from "react"
1111
export const ErrorAlert: FC<
1212
Omit<AlertProps, "severity" | "children"> & { error: unknown }
1313
> = ({ error, ...alertProps }) => {
14-
const [auth, authSend] = useAuth()
14+
const [_auth, authSend] = useAuth()
1515
const shouldSignOut = isAuthenticationError(error)
1616
useEffect(() => {
1717
if (shouldSignOut) {

0 commit comments

Comments
 (0)