Skip to content

Commit b14e4db

Browse files
committed
Merge branch 'develop' of github.com:GetStream/stream-chat-react-native into v6.0.0
2 parents 05005ce + 4832f10 commit b14e4db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package/src/components/ImageGallery/components/ImageGalleryFooter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export const ImageGalleryFooterWithContext = <
188188
pointerEvents={'box-none'}
189189
style={styles.wrapper}
190190
>
191-
<ReanimatedSafeAreaView style={[container, { backgroundColor: white }, footerStyle]}>
191+
<ReanimatedSafeAreaView style={[{ backgroundColor: white }, footerStyle, container]}>
192192
{photo.type === FileTypes.Video ? (
193193
videoControlElement ? (
194194
videoControlElement({ duration, onPlayPause, paused, progress, videoRef })

package/src/components/MessageInput/AttachButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const AttachButtonWithContext = <
5454
};
5555

5656
const attachButtonHandler = () => {
57-
setShowAttachButtonPicker(true);
57+
setShowAttachButtonPicker((prevShowAttachButtonPicker) => !prevShowAttachButtonPicker);
5858
};
5959

6060
const onPressHandler = () => {

0 commit comments

Comments
 (0)