Skip to content

Commit 261a2ca

Browse files
committed
fix: correct typo in state variable name for loading status in AuthErrorFallback component
1 parent 1838121 commit 261a2ca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • apps/ticket/src/shared/components/AuthErrorFallback

apps/ticket/src/shared/components/AuthErrorFallback/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useEffect, useState } from "react";
55
import { LoadingWithLayout } from "../LoadingWithLayout";
66

77
export const AuthErrorFallback = () => {
8-
const [isLoading, setIsLoaidng] = useState(true);
8+
const [isLoading, setIsLoading] = useState(true);
99

1010
useEffect(() => {
1111
const tokenReissue = async () => {

0 commit comments

Comments
 (0)