From 10fc9e845b4952419dcd2265eb502c4c4baf8198 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 10 Sep 2026 11:55:40 -0400 Subject: [PATCH 1/2] docs(shared): correct the hidePersonal default on OrganizationSwitcherProps --- .changeset/organization-switcher-hide-personal-doc.md | 5 +++++ packages/shared/src/types/clerk.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/organization-switcher-hide-personal-doc.md diff --git a/.changeset/organization-switcher-hide-personal-doc.md b/.changeset/organization-switcher-hide-personal-doc.md new file mode 100644 index 00000000000..a345288319b --- /dev/null +++ b/.changeset/organization-switcher-hide-personal-doc.md @@ -0,0 +1,5 @@ +--- +'@clerk/shared': patch +--- + +Correct the `hidePersonal` documentation on `OrganizationSwitcherProps`: setting it to `true` hides the personal account entry, and it defaults to `false`. diff --git a/packages/shared/src/types/clerk.ts b/packages/shared/src/types/clerk.ts index 49f7875870c..8bed5e6bdd6 100644 --- a/packages/shared/src/types/clerk.ts +++ b/packages/shared/src/types/clerk.ts @@ -2340,10 +2340,10 @@ export type OrganizationSwitcherProps = CreateOrganizationMode & /** * By default, users can switch between Organization and their personal account. * This option controls whether OrganizationSwitcher will include the user's personal account - * in the Organization list. Setting this to `false` will hide the personal account entry, + * in the Organization list. Setting this to `true` will hide the personal account entry, * and users will only be able to switch between Organizations. * - * @default true + * @default false */ hidePersonal?: boolean; /** From be84d51def7e925526ec81c18e03747d7ac56af6 Mon Sep 17 00:00:00 2001 From: Alex Carpenter Date: Thu, 10 Sep 2026 11:58:08 -0400 Subject: [PATCH 2/2] docs(shared): correct the hidePersonal default on OrganizationListProps too --- .changeset/organization-switcher-hide-personal-doc.md | 2 +- packages/shared/src/types/clerk.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.changeset/organization-switcher-hide-personal-doc.md b/.changeset/organization-switcher-hide-personal-doc.md index a345288319b..837e897b942 100644 --- a/.changeset/organization-switcher-hide-personal-doc.md +++ b/.changeset/organization-switcher-hide-personal-doc.md @@ -2,4 +2,4 @@ '@clerk/shared': patch --- -Correct the `hidePersonal` documentation on `OrganizationSwitcherProps`: setting it to `true` hides the personal account entry, and it defaults to `false`. +Correct the `hidePersonal` documentation on `OrganizationSwitcherProps` and `OrganizationListProps`: setting it to `true` hides the personal account entry, and it defaults to `false`. diff --git a/packages/shared/src/types/clerk.ts b/packages/shared/src/types/clerk.ts index 8bed5e6bdd6..f8fde1d122d 100644 --- a/packages/shared/src/types/clerk.ts +++ b/packages/shared/src/types/clerk.ts @@ -2427,10 +2427,10 @@ export type OrganizationListProps = { /** * By default, users can switch between Organization and their personal account. * This option controls whether OrganizationList will include the user's personal account - * in the Organization list. Setting this to `false` will hide the personal account entry, + * in the Organization list. Setting this to `true` will hide the personal account entry, * and users will only be able to switch between Organizations. * - * @default true + * @default false */ hidePersonal?: boolean; /**