diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-25 17:26:06 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | b2fe27afe72bee4fbebf3bf57418a900fb62ef45 (patch) | |
tree | 2c92fca39bb6661ac0869e3825f09abbef7c2cb0 /src/components/FeedInterstitials.tsx | |
parent | f35dc19a48966cb57c9d80b84267ec98b7d5c11b (diff) | |
download | voidsky-b2fe27afe72bee4fbebf3bf57418a900fb62ef45.tar.zst |
refactor(ui): remove "Browse more suggestions" on web in favor of "See all"
Diffstat (limited to 'src/components/FeedInterstitials.tsx')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index f2caddd74..f16b33786 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -378,20 +378,10 @@ export function ProfileGrid({ </View> {gtMobile ? ( - <View style={[a.flex_1, a.px_lg, a.pb_lg, a.gap_md]}> + <View style={[a.px_lg, a.pb_lg]}> <View style={[a.flex_1, a.flex_row, a.flex_wrap, a.gap_md]}> {content} </View> - - <View style={[a.flex_row, a.justify_end, a.align_center, a.gap_md]}> - <InlineLinkText - label={_(msg`Browse more suggestions`)} - to="/search" - style={[t.atoms.text_contrast_medium]}> - <Trans>Browse more suggestions</Trans> - </InlineLinkText> - <Arrow size="sm" fill={t.atoms.text_contrast_medium.color} /> - </View> </View> ) : ( <BlockDrawerGesture> |