Skip to content

Commit

Permalink
🚨 Fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
nwingt authored and williamchong committed Jan 25, 2024
1 parent 051b7e1 commit 173ecc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/authcore-dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const AuthcoreDialog: FC<AuthcoreDialogProps> = ({
const closeDialog = React.useCallback(() => {
setDialogOpen(false);
onClose?.();
}, []);
}, [onClose]);
useEffect(() => {
onMount?.({ containerId: AUTHCORE_DIALOG_ID });
}, [onMount, onClose]);
Expand Down

0 comments on commit 173ecc8

Please sign in to comment.