We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf457d commit 6969c7cCopy full SHA for 6969c7c
2 files changed
package/src/components/MessageInput/MessageInput.tsx
@@ -363,8 +363,8 @@ const MessageInputWithContext = (props: MessageInputPropsWithContext) => {
363
style={{
364
paddingBottom:
365
selectedPicker && !isKeyboardVisible
366
- ? attachmentPickerBottomSheetHeight - bottomInset + 16
367
- : 16,
+ ? attachmentPickerBottomSheetHeight - bottomInset
+ : 0,
368
}}
369
/>
370
) : null}
package/src/components/MessageList/MessageList.tsx
@@ -1314,7 +1314,7 @@ const MessageListWithContext = (props: MessageListPropsWithContext) => {
1314
style={[
1315
{
1316
bottom: messageInputFloating
1317
- ? messageInputHeight + primitives.spacingMd
+ ? messageInputHeight + primitives.spacingMd + 16
1318
: primitives.spacingMd,
1319
},
1320
styles.scrollToBottomButtonContainer,
0 commit comments