This commit is contained in:
Alejandro Gomez 2023-02-09 23:26:13 +01:00
parent 3fe4111262
commit 51f8f95d3e
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817

View File

@ -15,7 +15,7 @@ export default function GetVerified() {
const navigate = useNavigate(); const navigate = useNavigate();
const { publicKey } = useSelector((s: RootState) => s.login); const { publicKey } = useSelector((s: RootState) => s.login);
const user = useUserProfile(publicKey); const user = useUserProfile(publicKey);
const [isVerified, setIsVerified] = useState(true); const [isVerified, setIsVerified] = useState(false);
const [nip05, setNip05] = useState(`${user?.name || "nostrich"}@snort.social`); const [nip05, setNip05] = useState(`${user?.name || "nostrich"}@snort.social`);
const onNext = async () => { const onNext = async () => {