Skip to content

Commit 50617cd

Browse files
authored
regression(iOS): image picker fails to open from message action button (#7084)
1 parent 859b766 commit 50617cd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/containers/MessageComposer/components/Buttons/ActionsButton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const ActionsButton = () => {
5656
// This is necessary because the action sheet does not close properly on Android
5757
setTimeout(() => {
5858
takePhoto();
59-
}, 250);
59+
}, 550);
6060
}
6161
},
6262
{
@@ -67,7 +67,7 @@ export const ActionsButton = () => {
6767
// This is necessary because the action sheet does not close properly on Android
6868
setTimeout(() => {
6969
takeVideo();
70-
}, 250);
70+
}, 550);
7171
}
7272
},
7373
{
@@ -78,7 +78,7 @@ export const ActionsButton = () => {
7878
// This is necessary because the action sheet does not close properly on Android
7979
setTimeout(() => {
8080
chooseFromLibrary();
81-
}, 250);
81+
}, 550);
8282
}
8383
},
8484
{

0 commit comments

Comments
 (0)