Skip to content

Commit

Permalink
🐞 Fix: Update ModalView Default Props
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Jan 9, 2023
1 parent 7e38bb4 commit 7f0ab6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ModalView/ModalView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class ModalView extends
presentViaMount ?? false
),
isModalBGBlurred: (
isModalBGBlurred ?? false
isModalBGBlurred ?? true
),
enableSwipeGesture: (
enableSwipeGesture ?? true
Expand All @@ -127,7 +127,7 @@ export class ModalView extends
hideNonVisibleModals ?? false
),
isModalBGTransparent: (
isModalBGTransparent ?? false
isModalBGTransparent ?? true
),
modalTransitionStyle: (
modalTransitionStyle ?? 'coverVertical'
Expand Down

0 comments on commit 7f0ab6d

Please sign in to comment.