diff --git a/messages/en-US.json b/messages/en-US.json
index e48c9f05..ff0ca4e6 100644
--- a/messages/en-US.json
+++ b/messages/en-US.json
@@ -1162,7 +1162,7 @@
"selectDomainTypeCnameName": "Single Domain (CNAME)",
"selectDomainTypeCnameDescription": "Just this specific domain. Use this for individual subdomains or specific domain entries.",
"selectDomainTypeWildcardName": "Wildcard Domain",
- "selectDomainTypeWildcardDescription": "This domain and its first level of subdomains.",
+ "selectDomainTypeWildcardDescription": "This domain and its subdomains.",
"domainDelegation": "Single Domain",
"selectType": "Select a type",
"actions": "Actions",
diff --git a/server/routers/external.ts b/server/routers/external.ts
index e64d3456..6f0b04dc 100644
--- a/server/routers/external.ts
+++ b/server/routers/external.ts
@@ -620,8 +620,6 @@ authenticated.post(
authenticated.delete("/idp/:idpId", verifyUserIsServerAdmin, idp.deleteIdp);
-authenticated.get("/idp", verifyUserIsServerAdmin, idp.listIdps);
-
authenticated.get("/idp/:idpId", verifyUserIsServerAdmin, idp.getIdp);
authenticated.put(
diff --git a/server/routers/resource/createResource.ts b/server/routers/resource/createResource.ts
index 1c4ace3b..8f16b198 100644
--- a/server/routers/resource/createResource.ts
+++ b/server/routers/resource/createResource.ts
@@ -261,14 +261,6 @@ async function createHttpResource(
)
);
}
- if (parsedSubdomain.data.includes(".")) {
- return next(
- createHttpError(
- HttpCode.BAD_REQUEST,
- "Subdomain cannot contain a dot when using wildcard domains"
- )
- );
- }
fullDomain = `${subdomain}.${domainRes.domains.baseDomain}`;
} else {
fullDomain = domainRes.domains.baseDomain;
diff --git a/server/routers/resource/updateResource.ts b/server/routers/resource/updateResource.ts
index fda24f47..a20a7024 100644
--- a/server/routers/resource/updateResource.ts
+++ b/server/routers/resource/updateResource.ts
@@ -297,14 +297,6 @@ async function updateHttpResource(
)
);
}
- if (parsedSubdomain.data.includes(".")) {
- return next(
- createHttpError(
- HttpCode.BAD_REQUEST,
- "Subdomain cannot contain a dot when using wildcard domains"
- )
- );
- }
fullDomain = `${updateData.subdomain}.${domainRes.domains.baseDomain}`;
} else {
fullDomain = domainRes.domains.baseDomain;
diff --git a/src/app/[orgId]/settings/access/users/create/page.tsx b/src/app/[orgId]/settings/access/users/create/page.tsx
index 2158701d..b3ce8984 100644
--- a/src/app/[orgId]/settings/access/users/create/page.tsx
+++ b/src/app/[orgId]/settings/access/users/create/page.tsx
@@ -617,7 +617,7 @@ export default function Page() {
idp || null
);
}}
- cols={3}
+ cols={2}
/>
+
{build === "saas" ? t("domainPickerDescriptionSaas") : t("domainPickerDescription")} @@ -328,42 +326,44 @@ export default function DomainPicker({ {/* Tabs and Sort Toggle */} -