Fix app sharing groups not shown in subscription wizardFix bug#1288
Fix app sharing groups not shown in subscription wizardFix bug#1288
Conversation
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
WalkthroughTwo styling and configuration changes to the Credentials Wizard component: ButtonPanel receives additional vertical margin spacing, and CreateAppStep now consumes SettingsContext to retrieve application sharing configuration, passing it as a prop to ApplicationCreateForm. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|




Purpose
Fixes the Subscription & Key Generation Wizard not showing Application Groups during application creation even when application sharing is enabled.
Resolves issue: Application groups missing in Subscription & Key Generation Wizard when app sharing is enabled.
Goals
Ensure the wizard displays the Application Groups field when application sharing is enabled.
Keep behavior consistent with the standard application creation form in the Dev Portal.
Approach
Read applicationSharingEnabled from SettingsContext in CreateAppStep.jsx.
Pass it to ApplicationCreateForm via isApplicationSharingEnabled so the form renders the groups field.
Simplify the flag derivation using optional chaining (settingsContext?.settings?.applicationSharingEnabled) to keep it null-safe.
Summary by CodeRabbit
Style
New Features