diff options
author | Eric Bailey <git@esb.lol> | 2024-07-02 21:43:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-03 03:43:54 +0100 |
commit | 04cfd06639687012b59b52756015324cc622613b (patch) | |
tree | f4b4dda69d4e58b57d8e3bbcecff651f4f3df71f /src/components/FeedInterstitials.tsx | |
parent | 0598fc2faa813486851f01451818220302f2f97a (diff) | |
download | voidsky-04cfd06639687012b59b52756015324cc622613b.tar.zst |
[D1X] Integrate interstitials (#4698)
* Use discriminated union * Integrate interstitials * Add gates and handling for variants * Only show interstitials for logged in accounts since flags are based on user ID * Nit --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/components/FeedInterstitials.tsx')
-rw-r--r-- | src/components/FeedInterstitials.tsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index f1c4876a3..00342b39f 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -203,7 +203,7 @@ export function SuggestedFollows() { {content} <Button - label={_(msg`Browse more accounts on our explore page`)} + label={_(msg`Browse more accounts on the Explore page`)} onPress={() => { navigation.navigate('SearchTab') }}> @@ -211,7 +211,7 @@ export function SuggestedFollows() { <View style={[a.flex_1, a.justify_center]}> <View style={[a.flex_row, a.px_lg]}> <Text style={[a.pr_xl, a.flex_1, a.leading_snug]}> - <Trans>Browse more suggestions on our explore page</Trans> + <Trans>Browse more suggestions on the Explore page</Trans> </Text> <Arrow size="xl" /> @@ -329,7 +329,7 @@ export function SuggestedFeeds() { {content} <Button - label={_(msg`Browse more feeds on our explore page`)} + label={_(msg`Browse more feeds on the Explore page`)} onPress={() => { navigation.navigate('SearchTab') }} @@ -338,7 +338,7 @@ export function SuggestedFeeds() { <View style={[a.flex_1, a.justify_center]}> <View style={[a.flex_row, a.px_lg]}> <Text style={[a.pr_xl, a.flex_1, a.leading_snug]}> - <Trans>Browse more suggestions on our explore page</Trans> + <Trans>Browse more suggestions on the Explore page</Trans> </Text> <Arrow size="xl" /> |