From dcb3b1633b53f511787e7fa652c57bcb6d69dc8f Mon Sep 17 00:00:00 2001 From: Hafiz Date: Tue, 13 Jan 2026 13:21:55 -0600 Subject: [PATCH] force flag when fetching group plans --- .../src/components/group-plans/groupPlanSelectionModal.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/client/src/components/group-plans/groupPlanSelectionModal.vue b/website/client/src/components/group-plans/groupPlanSelectionModal.vue index fa25ad40f0..f0fd5459f3 100644 --- a/website/client/src/components/group-plans/groupPlanSelectionModal.vue +++ b/website/client/src/components/group-plans/groupPlanSelectionModal.vue @@ -430,7 +430,7 @@ export default { this.userGuilds = guildsResponse.data.data || []; this.userParty = partyResponse.data.data; - await this.$store.dispatch('guilds:getGroupPlans'); + await this.$store.dispatch('guilds:getGroupPlans', true); const groupPlans = this.$store.state.groupPlans?.data || []; this.activeGroupPlanIds = groupPlans.map(g => g._id); } catch (e) {