chore: bump to 2026.2.1

This commit is contained in:
Peter Steinberger
2026-02-02 08:50:34 +00:00
parent 4e4ed2ea17
commit 85cd55e22b
46 changed files with 126 additions and 54 deletions

View File

@@ -19,9 +19,8 @@ const OAUTH_PROVIDER_IDS = new Set<OAuthProvider>(
getOAuthProviders().map((provider) => provider.id),
);
function isOAuthProvider(provider: string): provider is OAuthProvider {
return OAUTH_PROVIDER_IDS.has(provider);
}
const isOAuthProvider = (provider: string): provider is OAuthProvider =>
OAUTH_PROVIDER_IDS.has(provider);
const resolveOAuthProvider = (provider: string): OAuthProvider | null =>
isOAuthProvider(provider) ? provider : null;