From b7e7ddc107758a9d94d1cddde422ecfecde9afda Mon Sep 17 00:00:00 2001 From: Hafiz Date: Wed, 14 Jan 2026 09:28:44 -0600 Subject: [PATCH] set initial selected group plan, and fix card rounding --- .../components/group-plans/groupPlanSelectionModal.vue | 10 ++++++++++ website/client/src/components/ui/selectableCard.vue | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/website/client/src/components/group-plans/groupPlanSelectionModal.vue b/website/client/src/components/group-plans/groupPlanSelectionModal.vue index 6619eb60df..9af1470f37 100644 --- a/website/client/src/components/group-plans/groupPlanSelectionModal.vue +++ b/website/client/src/components/group-plans/groupPlanSelectionModal.vue @@ -438,6 +438,16 @@ export default { } this.loading = false; + + this.$nextTick(() => { + if (this.upgradeableGuilds.length > 0) { + this.selectedOption = this.upgradeableGuilds[0]; + } else if (this.upgradeableParty) { + this.selectedOption = this.upgradeableParty; + } else { + this.selectedOption = 'new'; + } + }); }, selectOption (option) { this.selectedOption = option; diff --git a/website/client/src/components/ui/selectableCard.vue b/website/client/src/components/ui/selectableCard.vue index e3c1a6a523..964f3c0677 100644 --- a/website/client/src/components/ui/selectableCard.vue +++ b/website/client/src/components/ui/selectableCard.vue @@ -56,7 +56,7 @@ border-style: solid; border-width: 48px 48px 0 0; border-color: $purple-300 transparent transparent transparent; - border-radius: 8px 0 0 0; + border-radius: 6px 0 0 0; } .check-icon {