Skip to content

Commit 965fac3

Browse files
authored
fix: Theme color overrides durationText (#2613)
1 parent d7152f9 commit 965fac3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/src/components/AttachmentPicker/components/AttachmentPickerItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ const AttachmentVideo = (props: AttachmentVideoProps) => {
116116
<View style={styles.videoView}>
117117
<Recorder height={20} pathFill={white} width={25} />
118118
{videoDuration ? (
119-
<Text style={[styles.durationText, durationText, { color: white }]}>
119+
<Text style={[{ color: white }, styles.durationText, durationText]}>
120120
{durationLabel}
121121
</Text>
122122
) : null}

0 commit comments

Comments
 (0)