diff --git a/app/javascript/v3/views/auth/start/SetupUser.vue b/app/javascript/v3/views/auth/start/SetupProfile.vue similarity index 100% rename from app/javascript/v3/views/auth/start/SetupUser.vue rename to app/javascript/v3/views/auth/start/SetupProfile.vue diff --git a/app/javascript/v3/views/routes.js b/app/javascript/v3/views/routes.js index cf4b181be..d73db1c62 100644 --- a/app/javascript/v3/views/routes.js +++ b/app/javascript/v3/views/routes.js @@ -5,7 +5,7 @@ const Signup = () => import('./auth/signup/Index.vue'); const ResetPassword = () => import('./auth/reset/password/Index.vue'); const Confirmation = () => import('./auth/confirmation/Index.vue'); const PasswordEdit = () => import('./auth/password/Edit.vue'); -const SetupUser = () => import('./auth/start/SetupUser.vue'); +const SetupProfile = () => import('./auth/start/SetupProfile.vue'); const SetupCompany = () => import('./auth/start/SetupCompany.vue'); const FounderNote = () => import('./auth/start/FounderNote.vue'); @@ -57,9 +57,9 @@ export default [ component: ResetPassword, }, { - path: frontendURL('auth/start/setup-user'), - name: 'onboarding_setup_user', - component: SetupUser, + path: frontendURL('auth/start/setup-profile'), + name: 'onboarding_setup_profile', + component: SetupProfile, }, { path: frontendURL('auth/start/setup-company'),