diff --git a/.changeset/backend-relative-support-link.md b/.changeset/backend-relative-support-link.md new file mode 100644 index 00000000000..2958b5eacb1 --- /dev/null +++ b/.changeset/backend-relative-support-link.md @@ -0,0 +1,5 @@ +--- +'@clerk/backend': patch +--- + +Use a root-relative link (`/contact/support`) for the `passwordHasher` "contact support" reference so the generated API reference renders it as an internal same-tab link instead of an external one. diff --git a/packages/backend/src/api/endpoints/UserApi.ts b/packages/backend/src/api/endpoints/UserApi.ts index d19158da5ce..3d74c194a30 100644 --- a/packages/backend/src/api/endpoints/UserApi.ts +++ b/packages/backend/src/api/endpoints/UserApi.ts @@ -224,7 +224,7 @@ export type UserPasswordHashingParams = { * * * - * If you need support for any particular hashing algorithm, [contact support](https://clerk.com/contact/support). + * If you need support for any particular hashing algorithm, [contact support](/contact/support). */ passwordHasher: PasswordHasher; };