fix: resolve Biome CI failures for zoom connector

- Fix missing closing tags in Zoom icon component (icons.tsx)
- Apply Biome formatting to connections.tsx and api.ts

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
claude[bot] 2026-07-14 15:52:35 +00:00
parent 0e06b2b5f5
commit 8eb0294901
3 changed files with 17 additions and 2 deletions

View file

@ -52,7 +52,12 @@ const GDRIVE_SCOPE_LABELS: Record<GDriveSyncScope, string> = {
type Connection = z.infer<typeof ConnectionResponseSchema>
type ConnectorProvider = "google-drive" | "notion" | "onedrive" | "zoom" | "granola"
type ConnectorProvider =
| "google-drive"
| "notion"
| "onedrive"
| "zoom"
| "granola"
const CONNECTORS: Record<
ConnectorProvider,

View file

@ -120,7 +120,13 @@ export const apiSchema = createSchema({
redirectsTo: z.string().optional(),
}),
params: z.object({
provider: z.enum(["google-drive", "notion", "onedrive", "zoom", "granola"]),
provider: z.enum([
"google-drive",
"notion",
"onedrive",
"zoom",
"granola",
]),
}),
},

File diff suppressed because one or more lines are too long