From 04fbddfd9a6c8cb812cd51dc108d18cf67945e6b Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Fri, 30 Aug 2024 16:55:12 -0500 Subject: [PATCH] fix(groups): remove outdated group FAQ modal --- .../group-plans/groupPlanOverviewModal.vue | 377 ------------------ .../group-plans/taskInformation.vue | 7 - website/client/src/router/handleRedirect.js | 9 - 3 files changed, 393 deletions(-) delete mode 100644 website/client/src/components/group-plans/groupPlanOverviewModal.vue diff --git a/website/client/src/components/group-plans/groupPlanOverviewModal.vue b/website/client/src/components/group-plans/groupPlanOverviewModal.vue deleted file mode 100644 index d51d58440b..0000000000 --- a/website/client/src/components/group-plans/groupPlanOverviewModal.vue +++ /dev/null @@ -1,377 +0,0 @@ - - - - - - - diff --git a/website/client/src/components/group-plans/taskInformation.vue b/website/client/src/components/group-plans/taskInformation.vue index c48c919ef9..1d0fc46910 100644 --- a/website/client/src/components/group-plans/taskInformation.vue +++ b/website/client/src/components/group-plans/taskInformation.vue @@ -3,7 +3,6 @@ class="standard-page" @click="openCreateBtn ? openCreateBtn = false : null" > - { this.loadTasks(); this.loadGroupCompletedTodos(); diff --git a/website/client/src/router/handleRedirect.js b/website/client/src/router/handleRedirect.js index 9e7dc7cea9..66b99b75ef 100644 --- a/website/client/src/router/handleRedirect.js +++ b/website/client/src/router/handleRedirect.js @@ -37,15 +37,6 @@ export default function handleRedirect (to, from, next) { const newGroup = newAppState.group; if (newGroup && newGroup._id) { - // Handle new user signup - if (newAppState.newSignup === true) { - return next({ - name: 'groupPlanDetailTaskInformation', - params: { groupId: newGroup._id }, - query: { showGroupOverview: 'true' }, - }); - } - return next({ name: 'groupPlanDetailTaskInformation', params: { groupId: newGroup._id },