Skip to content

Commit 1ff8e19

Browse files
authored
Change setTimeout's time from 50 to 100
1 parent 291be91 commit 1ff8e19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/dialog/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class Dialog extends Component<DialogProps, DialogState> {
168168
setTimeout(() => { // unfortunately this is needed if a modal needs to open on iOS
169169
_.invoke(this.props, 'onDialogDismissed', this.props);
170170
_.invoke(this.props, 'onModalDismissed', this.props);
171-
}, 50);
171+
}, 100);
172172
}
173173
}
174174

0 commit comments

Comments
 (0)