Skip to content

Commit

Permalink
fix: default state for VerifyWalletModal
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Sep 27, 2024
1 parent a59216b commit 5a9575a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ const VerifyWalletModal = () => {
const dispatch = useAppDispatch();
const { trackEvent } = useMatomo();
const isMobile = useMediaQuery(theme.breakpoints.down("sm"));
const [isOpen, setIsOpen] = useState<boolean>(true);
const [isOpen, setIsOpen] = useState<boolean>(false);
const [verifyCurrentPaths, setVerifyCurrentPaths] = useState<
VerifyWalletFlow[]
>([VerifyWalletFlow.CONFIRM_CODE]);
>([VerifyWalletFlow.INTRO]);

const getDefaultCountry = () => {
const language = navigator.language;
Expand Down

0 comments on commit 5a9575a

Please sign in to comment.