diff --git a/src/components/chat/Chat.tsx b/src/components/chat/Chat.tsx index c50b34c..9331951 100644 --- a/src/components/chat/Chat.tsx +++ b/src/components/chat/Chat.tsx @@ -36,9 +36,7 @@ const Chat = observer(({ height, width }) => { ref={scrollRef} // If there are attachments, use "100px". Otherwise, use "128px" on Android, "73px" elsewhere. pb={ - chatStore.attachments.length > 0 - ? "100px" - : isAndroid + isAndroid ? "128px" : "73px" }