File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed
homepageExperience/containers Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ import RateLimitAlert from 'src/cloud/components/RateLimitAlert'
4040
4141export const HomepageContainer : FC = ( ) => {
4242 const org = useSelector ( getOrg )
43- const pythonWizardLink = `/orgs/${ org . id } /new-user-wizard /python`
43+ const pythonWizardLink = `/orgs/${ org . id } /new-user-setup /python`
4444 const cliPageLink = `/orgs/${ org . id } /load-data/file-upload/csv`
4545 const telegrafPageLink = `/orgs/${ org . id } /load-data/telegrafs`
46- const golangLink = `/orgs/${ org . id } /new-user-wizard/go `
46+ const golangLink = `/orgs/${ org . id } /new-user-setup/golang `
4747 const loadDataSourcesLink = `/orgs/${ org . id } /load-data/sources`
48- const javaScriptNodeLink = `/orgs/${ org . id } /new-user-wizard /nodejs`
48+ const javaScriptNodeLink = `/orgs/${ org . id } /new-user-setup /nodejs`
4949
5050 const cardStyle = { minWidth : '200px' }
5151 const linkStyle = { color : InfluxColors . Grey75 }
Original file line number Diff line number Diff line change @@ -314,17 +314,17 @@ const SetOrg: FC = () => {
314314 < >
315315 < Route
316316 exact
317- path = "/orgs/:orgID/new-user-wizard /python"
317+ path = "/orgs/:orgID/new-user-setup /python"
318318 component = { PythonWizard }
319319 />
320320 < Route
321321 exact
322- path = "/orgs/:orgID/new-user-wizard /nodejs"
322+ path = "/orgs/:orgID/new-user-setup /nodejs"
323323 component = { NodejsWizard }
324324 />
325325 < Route
326326 exact
327- path = "/orgs/:orgID/new-user-wizard/go "
327+ path = "/orgs/:orgID/new-user-setup/golang "
328328 component = { GoWizard }
329329 />
330330 </ >
Original file line number Diff line number Diff line change @@ -21,6 +21,9 @@ export const buildDeepLinkingMap = (org: Organization) => ({
2121 '/me/notebooks' : `/orgs/${ org . id } /${ PROJECT_NAME_PLURAL . toLowerCase ( ) } ` ,
2222 '/me/pythonclient' : `/orgs/${ org . id } /load-data/client-libraries/python` ,
2323 '/me/secrets' : `/orgs/${ org . id } /settings/secrets` ,
24+ '/me/setup-python' : `/orgs/${ org . id } /new-user-setup/python` ,
25+ '/me/setup-nodejs' : `/orgs/${ org . id } /new-user-setup/nodejs` ,
26+ '/me/setup-golang' : `/orgs/${ org . id } /new-user-setup/golang` ,
2427 '/me/tasks' : `/orgs/${ org . id } /tasks` ,
2528 '/me/telegraf-mqtt' : `/orgs/${ org . id } /load-data/telegraf-plugins/mqtt_consumer` ,
2629 '/me/telegrafs' : `/orgs/${ org . id } /load-data/telegrafs` ,
You can’t perform that action at this time.
0 commit comments