removed unused type

This commit is contained in:
bkellam 2025-11-24 13:16:39 -08:00
parent 6c947e36f2
commit f83b858209

View file

@ -66,16 +66,6 @@ export const createPathWithQueryParams = (path: string, ...queryParams: [string,
return `${path}?${queryString}`;
}
export type AuthProviderType =
"github" |
"gitlab" |
"google" |
"okta" |
"keycloak" |
"microsoft-entra-id" |
"credentials" |
"nodemailer";
type AuthProviderInfo = {
id: string;
name: string;