Skip to content

Commit 9c3a648

Browse files
committed
fix: tests
1 parent e7626f0 commit 9c3a648

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

package/src/components/MessageInput/components/AttachmentPreview/ImageAttachmentUploadPreview.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,13 @@ export const ImageAttachmentUploadPreview = ({
6161

6262
return (
6363
<View style={[styles.wrapper, wrapper]} testID={'image-attachment-upload-preview'}>
64-
<View style={[styles.image, upload]} testID={'image-attachment-upload-preview-image'}>
64+
<View style={[styles.image, upload]}>
6565
<Image
6666
onError={onErrorHandler}
6767
onLoadEnd={onLoadEndHandler}
6868
source={{ uri: attachment.localMetadata.previewUri ?? attachment.image_url }}
6969
style={StyleSheet.absoluteFillObject}
70+
testID={'image-attachment-upload-preview-image'}
7071
/>
7172
{indicatorType === ProgressIndicatorTypes.IN_PROGRESS && <ImageUploadInProgressIndicator />}
7273
{indicatorType === ProgressIndicatorTypes.RETRY && (

0 commit comments

Comments
 (0)