Skip to content

Commit

Permalink
🐞 Fix: Types - ModalViewState
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicstop committed May 5, 2023
1 parent f7023ed commit 59bc1da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ModalView/ModalViewState.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { RNIModalFocusState } from 'src/types/RNIModalTypes';
import type { ModalFocusState } from 'src/types/RNIModalTypes';

export type ModalViewState = {
isModalVisible: boolean;
Expand All @@ -7,5 +7,5 @@ export type ModalViewState = {
isModalInPresentation: boolean;
isModalInFocus: boolean;

focusState: RNIModalFocusState;
focusState: ModalFocusState;
};

0 comments on commit 59bc1da

Please sign in to comment.