Skip to content

Commit

Permalink
🐞 Fix: DEFAULT_MODAL_SHEET_VIEW_METRICS
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed Sep 30, 2024
1 parent be697df commit 197714d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/ModalSheetView/ModalSheetViewConstants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ import type { RNIModalSheetStateMetrics } from "../../types/RNIModalSheetStateMe

export const DEFAULT_MODAL_SHEET_VIEW_METRICS: RNIModalSheetStateMetrics = {
state: 'dismissed',
isDismissed: true,
isDismissing: false,
isPresented: false,
simplified: 'dismissed',

isPresenting: false,
simplified: 'dismissed'
isPresented: false,
isDismissing: false,
isDismissed: true,
isIdle: true,
};

0 comments on commit 197714d

Please sign in to comment.