Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
linnall committed Nov 8, 2024
1 parent 1101154 commit c3aa3bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion account-kit/react/src/components/auth/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const AuthModal = () => {
modalBaseClassName,
}));
const { isOpen, closeAuthModal } = useAuthModal();

console.trace(isOpen);
return (
<Dialog isOpen={isOpen} onClose={closeAuthModal}>
<div
Expand Down
1 change: 1 addition & 0 deletions account-kit/react/src/hooks/useUiConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export function createUiConfigStore(
...initialConfig,
isModalOpen: false,
setModalOpen: (isOpen: boolean) => {
console.trace(isOpen);
set({ isModalOpen: isOpen });
},
updateConfig: (config: AlchemyAccountsUIConfig) => {
Expand Down

0 comments on commit c3aa3bf

Please sign in to comment.