Merge pull request #541 from bluesky-social/ansh/app-569-make-sure-android-is-not-allowing-more

[APP-569] Only allow selecting 4 pics max
This commit is contained in:
Ollie Hsieh
2023-04-25 14:52:53 -07:00
committed by GitHub
+1 -1
View File
@@ -196,7 +196,7 @@ export const ComposePost = observer(function ComposePost({
? 'Write a comment'
: "What's up?"
const canSelectImages = gallery.size <= 4
const canSelectImages = gallery.size < 4
const viewStyles = {
paddingBottom: isAndroid ? insets.bottom : 0,
paddingTop: isAndroid ? insets.top : isDesktopWeb ? 0 : 15,