Skip to content

Commit

Permalink
fix: isCheckWalletModalOpen default state
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Sep 27, 2024
1 parent 530c4c3 commit 1d336f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/summit-2024/src/components/Header/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const Header = () => {
const [menuIsOpen, setMenuIsOpen] = useState(false);
const [isLoginModalOpen, setIsLoginModalOpen] = useState<boolean>(false);
const [isCheckWalletModalOpen, setIsCheckWalletModalOpen] =
useState<boolean>(true);
useState<boolean>(false);
const isPortrait = useIsPortrait();

const { disconnect, signMessage } = useCardano({
Expand Down

0 comments on commit 1d336f2

Please sign in to comment.