From 129d08144bfd19423fea8771612f1a49facef35c Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 8 Sep 2022 22:23:43 -0700 Subject: [PATCH] Fix bad default bool --- web/components/modals/FediAuthModal/FediAuthModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/modals/FediAuthModal/FediAuthModal.tsx b/web/components/modals/FediAuthModal/FediAuthModal.tsx index 4ebf84766..c7a06fbce 100644 --- a/web/components/modals/FediAuthModal/FediAuthModal.tsx +++ b/web/components/modals/FediAuthModal/FediAuthModal.tsx @@ -21,7 +21,7 @@ export const FediAuthModal: FC = ({ const [valid, setValid] = useState(false); const [account, setAccount] = useState(''); const [code, setCode] = useState(''); - const [verifyingCode, setVerifyingCode] = useState(true); + const [verifyingCode, setVerifyingCode] = useState(false); const message = !authenticated ? (