diff --git a/frontend/src/components/Layouts/AppSidebar.vue b/frontend/src/components/Layouts/AppSidebar.vue index ec9def61..98f5644e 100644 --- a/frontend/src/components/Layouts/AppSidebar.vue +++ b/frontend/src/components/Layouts/AppSidebar.vue @@ -77,7 +77,12 @@
{{ step.title }}
diff --git a/frontend/src/composables/onboarding.js b/frontend/src/composables/onboarding.js index 63309189..737f5911 100644 --- a/frontend/src/composables/onboarding.js +++ b/frontend/src/composables/onboarding.js @@ -29,9 +29,7 @@ const steps = reactive([ icon: markRaw(LeadsIcon), completed: false, onClick: () => { - if (steps[0].completed) return minimize.value = true - router.push({ name: 'Leads' }) }, }, @@ -41,9 +39,7 @@ const steps = reactive([ icon: markRaw(InviteIcon), completed: false, onClick: () => { - if (steps[1].completed) return minimize.value = true - showSettings.value = true activeSettingsPage.value = 'Invite Members' },