show button and say "skip"

This commit is contained in:
Hailey
2024-06-11 14:42:29 -07:00
parent 1508232163
commit db30c93e05
+3 -6
View File
@@ -179,7 +179,7 @@ function WizardInner({
}, },
Feeds: { Feeds: {
header: _(msg`Feeds`), header: _(msg`Feeds`),
nextBtn: _(msg`Finish`), nextBtn: state.feeds.length === 0 ? _(msg`Skip`) : _(msg`Finish`),
subtitle: _(msg`Some subtitle`), subtitle: _(msg`Some subtitle`),
}, },
} }
@@ -535,13 +535,10 @@ function Footer({
{items.length === 0 ? ( {items.length === 0 ? (
<View style={[a.gap_sm]}> <View style={[a.gap_sm]}>
<Text style={[a.font_bold, a.text_center, textStyles]}> <Text style={[a.font_bold, a.text_center, textStyles]}>
<Trans>Optionally, add some feeds to your starter pack!</Trans> <Trans>Add some feeds to your starter pack!</Trans>
</Text> </Text>
<Text style={[a.text_center, textStyles]}> <Text style={[a.text_center, textStyles]}>
<Trans> <Trans>Search for feeds that you want to suggest to others.</Trans>
Search for feeds that you want to suggest to others, or skip for
now and add some later.
</Trans>
</Text> </Text>
</View> </View>
) : ( ) : (