diff --git a/packages/frontend-2/components/settings/workspaces/security/DefaultSeat.vue b/packages/frontend-2/components/settings/workspaces/security/DefaultSeat.vue index 183e2dfac..b373ddf95 100644 --- a/packages/frontend-2/components/settings/workspaces/security/DefaultSeat.vue +++ b/packages/frontend-2/components/settings/workspaces/security/DefaultSeat.vue @@ -120,7 +120,7 @@ const handleSeatTypeChange = (newValue: WorkspaceSeatType) => { if (newValue === currentSeatType.value) return // If setting to Editor on paid plan, show confirmation - if (newValue === SeatTypes.Editor && isSelfServePlan) { + if (newValue === SeatTypes.Editor && isSelfServePlan.value) { pendingNewSeatType.value = newValue showConfirmSeatTypeDialog.value = true return diff --git a/packages/frontend-2/components/settings/workspaces/security/Discoverability.vue b/packages/frontend-2/components/settings/workspaces/security/Discoverability.vue index 7f69797a8..4f37f9dcc 100644 --- a/packages/frontend-2/components/settings/workspaces/security/Discoverability.vue +++ b/packages/frontend-2/components/settings/workspaces/security/Discoverability.vue @@ -66,6 +66,9 @@
This will allow users with verified domain emails to join automatically without admin approval. + + They will join on a paid Editor seat. +
Are you sure you want to enable this?
@@ -73,7 +76,7 @@