diff --git a/src/Api/Controllers/OrganizationConnectionsController.cs b/src/Api/Controllers/OrganizationConnectionsController.cs index 5206cb51ae..4c04a24973 100644 --- a/src/Api/Controllers/OrganizationConnectionsController.cs +++ b/src/Api/Controllers/OrganizationConnectionsController.cs @@ -101,7 +101,7 @@ public class OrganizationConnectionsController : Controller case OrganizationConnectionType.Scim: return await CreateOrUpdateOrganizationConnectionAsync(organizationConnectionId, model); default: - throw new BadRequestException($"Unkown Organization connection Type: {model.Type}"); + throw new BadRequestException($"Unknown Organization connection Type: {model.Type}"); } } @@ -127,7 +127,7 @@ public class OrganizationConnectionsController : Controller case OrganizationConnectionType.Scim: return new OrganizationConnectionResponseModel(connection, typeof(ScimConfig)); default: - throw new BadRequestException($"Unkown Organization connection Type: {type}"); + throw new BadRequestException($"Unknown Organization connection Type: {type}"); } }