diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-22 15:50:51 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-24 12:30:35 -0700 |
commit | c1d2aea885e8ec32b40b9710d0da641fe75dac91 (patch) | |
tree | e1b74684ab93ec7022dbc0de05355c66fe0c5354 /src/components/interstitials | |
parent | 229f275246f12b563ea89faab1cbe3f27b98e404 (diff) | |
download | voidsky-c1d2aea885e8ec32b40b9710d0da641fe75dac91.tar.zst |
feat(ui): remove the header icon
Replace the header's flex row with a single bold text element for "Trending Videos", removing the Graph icon and extra container.
Diffstat (limited to 'src/components/interstitials')
-rw-r--r-- | src/components/interstitials/TrendingVideos.tsx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/components/interstitials/TrendingVideos.tsx b/src/components/interstitials/TrendingVideos.tsx index 439803dfa..3ad5625c3 100644 --- a/src/components/interstitials/TrendingVideos.tsx +++ b/src/components/interstitials/TrendingVideos.tsx @@ -83,12 +83,9 @@ export function TrendingVideos() { a.align_center, a.justify_between, ]}> - <View style={[a.flex_1, a.flex_row, a.align_center, a.gap_xs]}> - <Graph /> - <Text style={[a.text_md, a.font_bold, a.leading_snug]}> - <Trans>Trending Videos</Trans> - </Text> - </View> + <Text style={[a.text_sm, a.font_bold, a.leading_snug]}> + <Trans>Trending Videos</Trans> + </Text> <Button label={_(msg`Dismiss this section`)} size="tiny" |