Skip to content

Commit

Permalink
🐞 Fix: ModalSheetView.onModalDidDismiss Event
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Sep 30, 2024
1 parent e11970a commit 69f3c87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ModalSheetView/ModalSheetView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const ModalSheetView = React.forwardRef<
onModalDidDismiss={(event) => {
setShouldExplicitlyMountModalContents(false);

props.onModalDidHide?.(event);
props.onModalDidDismiss?.(event);
event.stopPropagation();
}}
onModalSheetStateDidChange={(event) => {
Expand Down

0 comments on commit 69f3c87

Please sign in to comment.