You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR:
- refactors the DevKit settings onboarding flow to clarify that steps 2
and 3 are alternative methods, not sequential steps. This is now done
using accordion component
- adds a note that user needs playstation access to, Sentry admin is not
enough
- fixes a bug when `guidedStep` was part of URL after the tab was
switched, which would then shown wrong onboarding step. Now that
parameter is removed from URL on tab swtich
---------
Co-authored-by: Cursor Agent <[email protected]>
Co-authored-by: getsantry[bot] <66042841+getsantry[bot]@users.noreply.github.com>
'Using Windows tool enter that link into the DevKit as the URL to the Recap Server.'
104
-
)}
105
-
</p>
106
-
</StepTextSection>
107
-
<StepImageSection>
108
-
<CardIllustration
109
-
src={windowToolImg}
110
-
alt="Setup Configuration"
111
-
/>
112
-
</StepImageSection>
113
-
</StepContentColumn>
114
-
</DescriptionWrapper>
115
-
<GuidedSteps.StepButtons/>
116
-
</GuidedSteps.Step>
98
+
<IntroText>
99
+
{t(
100
+
'There are two ways to configure the Upload URL on your DevKit. Choose one of the following methods:'
101
+
)}
102
+
</IntroText>
117
103
118
-
<GuidedSteps.Step
119
-
stepKey="step-3"
120
-
title={t('Using DevKit Directly to set up Upload URL')}
121
-
>
122
-
<DescriptionWrapper>
123
-
<StepContentColumn>
124
-
<StepTextSection>
125
-
<p>
126
-
{t(
127
-
`If you haven't done it via Windows tool, you can set up the Upload URL directly in the DevKit. It is under 'Debug Settings' > 'Core Dump' > 'Upload' > 'Upload URL'.`
128
-
)}
129
-
</p>
130
-
</StepTextSection>
131
-
<StepImageSection>
132
-
<CardIllustration
133
-
src={devkitCrashesStep1}
134
-
alt="Setup Configuration"
135
-
/>
136
-
</StepImageSection>
137
-
<StepImageSection>
138
-
<CardIllustration
139
-
src={devkitCrashesStep2}
140
-
alt="Setup Configuration"
141
-
/>
142
-
</StepImageSection>
143
-
<StepImageSection>
144
-
<CardIllustration
145
-
src={devkitCrashesStep3}
146
-
alt="Setup Configuration"
147
-
/>
148
-
</StepImageSection>
149
-
</StepContentColumn>
104
+
<Accordion
105
+
expandedIndex={expandedAccordionIndex}
106
+
setExpandedIndex={setExpandedAccordionIndex}
107
+
items={[
108
+
{
109
+
header: (
110
+
<AccordionHeader>
111
+
{t('Using Windows tool to set up Upload URL')}
112
+
</AccordionHeader>
113
+
),
114
+
content: (
115
+
<AccordionContentWrapper>
116
+
<StepContentColumn>
117
+
<StepTextSection>
118
+
<p>
119
+
{t(
120
+
'Using Windows tool enter that link into the DevKit as the URL to the Recap Server.'
121
+
)}
122
+
</p>
123
+
</StepTextSection>
124
+
<StepImageSection>
125
+
<CardIllustration
126
+
src={windowToolImg}
127
+
alt="Setup Configuration"
128
+
/>
129
+
</StepImageSection>
130
+
</StepContentColumn>
131
+
</AccordionContentWrapper>
132
+
),
133
+
},
134
+
{
135
+
header: (
136
+
<AccordionHeader>
137
+
{t('Using DevKit Directly to set up Upload URL')}
138
+
</AccordionHeader>
139
+
),
140
+
content: (
141
+
<AccordionContentWrapper>
142
+
<StepContentColumn>
143
+
<StepTextSection>
144
+
<p>
145
+
{t(
146
+
`If you haven't done it via Windows tool, you can set up the Upload URL directly in the DevKit. It is under 'Debug Settings' > 'Core Dump' > 'Upload' > 'Upload URL'.`
0 commit comments