From 1b13b574f8aafd96887823d6dfa7aaddde5d9b72 Mon Sep 17 00:00:00 2001 From: Allen Zhou <46854522+allenzhou101@users.noreply.github.com> Date: Wed, 5 Feb 2025 12:45:11 -0800 Subject: [PATCH] Update auth.ts --- client/src/lib/auth.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/lib/auth.ts b/client/src/lib/auth.ts index d7ddc8c..592dc17 100644 --- a/client/src/lib/auth.ts +++ b/client/src/lib/auth.ts @@ -4,7 +4,7 @@ import { z } from "zod"; export const OAuthMetadataSchema = z.object({ authorization_endpoint: z.string(), - token_endpoint: z.string() + token_endpoint: z.string(), }); export type OAuthMetadata = z.infer; @@ -12,7 +12,7 @@ export type OAuthMetadata = z.infer; export const OAuthTokensSchema = z.object({ access_token: z.string(), refresh_token: z.string().optional(), - expires_in: z.number().optional() + expires_in: z.number().optional(), }); export type OAuthTokens = z.infer;