mirror of
https://github.com/owncast/owncast.git
synced 2025-11-02 20:23:29 +08:00
Fix bad default bool
This commit is contained in:
@ -21,7 +21,7 @@ export const FediAuthModal: FC<FediAuthModalProps> = ({
|
||||
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 ? (
|
||||
<span>
|
||||
|
||||
Reference in New Issue
Block a user