diff options
author | Caidan Williams <caidan@internet.dev> | 2025-07-24 17:33:26 -0700 |
---|---|---|
committer | Caidan Williams <caidan@internet.dev> | 2025-07-29 17:37:01 -0700 |
commit | b8a257a1c782126e525efadc5a602817cc4c2619 (patch) | |
tree | d34bf88e111f21bb563a3fa17e5e9008f803158a /src | |
parent | 92e01197344a05ff7510a274543e7cdf86fb8c4b (diff) | |
download | voidsky-b8a257a1c782126e525efadc5a602817cc4c2619.tar.zst |
feat(ui): replace suggested profiles interstital icon with link "See all"
Diffstat (limited to 'src')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index cf0f0cc21..dec2dac1b 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -29,7 +29,6 @@ import {Button} from '#/components/Button' import * as FeedCard from '#/components/FeedCard' import {ArrowRight_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow' import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' -import {PersonPlus_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person' import {InlineLinkText} from '#/components/Link' import * as ProfileCard from '#/components/ProfileCard' import {Text} from '#/components/Typography' @@ -345,7 +344,9 @@ export function ProfileGrid({ <Trans>Suggested for you</Trans> )} </Text> - <Person fill={t.atoms.text_contrast_low.color} size="sm" /> + <InlineLinkText label={_(msg`See all suggested profiles`)} to="/search"> + <Trans>See all</Trans> + </InlineLinkText> </View> {gtMobile ? ( |