Skip to content

Commit 6f8cfaf

Browse files
fix(feedback): fix platform option bug (#81087)
same bug as in #80938
1 parent 82dec67 commit 6f8cfaf

File tree

1 file changed

+6
-9
lines changed
  • static/app/components/feedback/feedbackOnboarding

1 file changed

+6
-9
lines changed

static/app/components/feedback/feedbackOnboarding/sidebar.tsx

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -246,15 +246,12 @@ function OnboardingContent({currentProject}: {currentProject: Project}) {
246246
/>
247247
),
248248
})}
249-
{jsFrameworkDocs?.platformOptions &&
250-
tct('with [optionSelect]', {
251-
optionSelect: (
252-
<PlatformOptionDropdown
253-
platformOptions={jsFrameworkDocs?.platformOptions}
254-
disabled={setupMode() === 'jsLoader'}
255-
/>
256-
),
257-
})}
249+
{jsFrameworkDocs?.platformOptions && (
250+
<PlatformOptionDropdown
251+
platformOptions={jsFrameworkDocs?.platformOptions}
252+
disabled={setupMode() === 'jsLoader'}
253+
/>
254+
)}
258255
</PlatformSelect>
259256
) : (
260257
t('I use NPM or Yarn')

0 commit comments

Comments
 (0)