We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82dec67 commit 6f8cfafCopy full SHA for 6f8cfaf
static/app/components/feedback/feedbackOnboarding/sidebar.tsx
@@ -246,15 +246,12 @@ function OnboardingContent({currentProject}: {currentProject: Project}) {
246
/>
247
),
248
})}
249
- {jsFrameworkDocs?.platformOptions &&
250
- tct('with [optionSelect]', {
251
- optionSelect: (
252
- <PlatformOptionDropdown
253
- platformOptions={jsFrameworkDocs?.platformOptions}
254
- disabled={setupMode() === 'jsLoader'}
255
- />
256
- ),
257
- })}
+ {jsFrameworkDocs?.platformOptions && (
+ <PlatformOptionDropdown
+ platformOptions={jsFrameworkDocs?.platformOptions}
+ disabled={setupMode() === 'jsLoader'}
+ />
+ )}
258
</PlatformSelect>
259
) : (
260
t('I use NPM or Yarn')
0 commit comments