Skip to content

Commit

Permalink
Set default verified to false
Browse files Browse the repository at this point in the history
  • Loading branch information
DerCed committed Feb 15, 2024
1 parent 8fc4186 commit b2c1a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/VerifiedChecker/VerifiedChecker.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Check} from "@mui/icons-material";

export function VerifiedChecker() {

const [isVerified, setIsVerified] = useState(true);
const [isVerified, setIsVerified] = useState(false);

useEffect(() => {
const queryParameters = new URLSearchParams(window?.location?.search)
Expand Down

0 comments on commit b2c1a88

Please sign in to comment.