File tree Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Expand file tree Collapse file tree 1 file changed +20
-19
lines changed Original file line number Diff line number Diff line change @@ -302,25 +302,26 @@ const SetOrg: FC = () => {
302302 < Route exact path = "/orgs/:orgID" component = { MePage } />
303303 ) }
304304
305- { isFlagEnabled ( 'firstMile' ) && (
306- < >
307- < Route
308- exact
309- path = "/orgs/:orgID/new-user-setup/python"
310- component = { PythonWizard }
311- />
312- < Route
313- exact
314- path = "/orgs/:orgID/new-user-setup/nodejs"
315- component = { NodejsWizard }
316- />
317- < Route
318- exact
319- path = "/orgs/:orgID/new-user-setup/golang"
320- component = { GoWizard }
321- />
322- </ >
323- ) }
305+ { isFlagEnabled ( 'firstMile' ) && [
306+ < Route
307+ exact
308+ path = "/orgs/:orgID/new-user-setup/python"
309+ key = "/python"
310+ component = { PythonWizard }
311+ /> ,
312+ < Route
313+ exact
314+ path = "/orgs/:orgID/new-user-setup/nodejs"
315+ key = "/nodejs"
316+ component = { NodejsWizard }
317+ /> ,
318+ < Route
319+ exact
320+ path = "/orgs/:orgID/new-user-setup/golang"
321+ key = "/golang"
322+ component = { GoWizard }
323+ /> ,
324+ ] }
324325
325326 < Route component = { NotFound } />
326327 </ Switch >
You can’t perform that action at this time.
0 commit comments