Skip to content

Commit

Permalink
Merge pull request #43245 from dominictb/fix/42298
Browse files Browse the repository at this point in the history
fix: apply border radius styling to video thumbnail
  • Loading branch information
marcochavezf authored Jun 7, 2024
2 parents a1ed1ab + f3e8411 commit f5edd62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/VideoPlayerPreview/VideoPlayerThumbnail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function VideoPlayerThumbnail({thumbnailUrl, onPress, accessibilityLabel}: Video
return (
<View style={styles.flex1}>
{thumbnailUrl && (
<View style={styles.flex1}>
<View style={[styles.flex1, {borderRadius: variables.componentBorderRadiusNormal}, styles.overflowHidden]}>
<Image
source={{uri: thumbnailUrl}}
style={styles.flex1}
Expand Down

0 comments on commit f5edd62

Please sign in to comment.