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
zio/stable
Ollie Hsieh 2023-04-25 14:52:53 -07:00 committed by GitHub
commit 8f3915e0a5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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,