From b8608ac03b8606a752e2da9c608bc9ef2a20249e Mon Sep 17 00:00:00 2001 From: RetroSunstar <57507616+RetroSunstar@users.noreply.github.com> Date: Sun, 28 Jun 2026 09:09:07 +0100 Subject: [PATCH] Fix 149/150 user limit for starter packs (#11001) --- src/components/StarterPack/Wizard/WizardListCard.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/components/StarterPack/Wizard/WizardListCard.tsx b/src/components/StarterPack/Wizard/WizardListCard.tsx index d326675b9f..b48c656a08 100644 --- a/src/components/StarterPack/Wizard/WizardListCard.tsx +++ b/src/components/StarterPack/Wizard/WizardListCard.tsx @@ -139,8 +139,7 @@ export function WizardProfileCard({ const isTarget = profile.did === targetProfileDid const included = isTarget || state.profiles.some(p => p.did === profile.did) const disabled = - isTarget || - (!included && state.profiles.length >= STARTER_PACK_MAX_SIZE - 1) + isTarget || (!included && state.profiles.length >= STARTER_PACK_MAX_SIZE) const moderationUi = moderateProfile(profile, moderationOpts).ui('avatar') const displayName = profile.displayName ? sanitizeDisplayName(profile.displayName)