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 {