diff --git a/src/components/StarterPack/Wizard/WizardFeedCard.tsx b/src/components/StarterPack/Wizard/WizardFeedCard.tsx index 1004173e84..caf7c77046 100644 --- a/src/components/StarterPack/Wizard/WizardFeedCard.tsx +++ b/src/components/StarterPack/Wizard/WizardFeedCard.tsx @@ -60,6 +60,7 @@ export function WizardFeedCard({ color={includesFeed ? 'secondary' : 'primary'} size="small" style={{paddingVertical: 6}} + disabled={!includesFeed && state.feeds.length >= 3} onPress={onAdd}> {includesFeed ? Remove : Add} diff --git a/src/components/StarterPack/Wizard/WizardProfileCard.tsx b/src/components/StarterPack/Wizard/WizardProfileCard.tsx index a78c12834e..48a900da7a 100644 --- a/src/components/StarterPack/Wizard/WizardProfileCard.tsx +++ b/src/components/StarterPack/Wizard/WizardProfileCard.tsx @@ -66,6 +66,7 @@ export function WizardProfileCard({ color={includesProfile ? 'secondary' : 'primary'} size="small" style={{paddingVertical: 6}} + disabled={!includesProfile && state.profiles.length >= 50} onPress={onPressAddRemove}> {includesProfile ? Remove : Add} diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index 1b5d3d7964..37e3d40d98 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -511,15 +511,23 @@ function Footer({ }, ], ]}> + + + {items.length}/{state.currentStep === 'Profiles' ? 50 : 3} + + + - {items.slice(0, 6).map((p, index) => ( - - ))} + + {items.slice(0, 6).map((p, index) => ( + + ))} + {items.length === 0 ? (