mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-08-28 05:25:33 +00:00
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:
parent
0e06b2b5f5
commit
8eb0294901
3 changed files with 17 additions and 2 deletions
|
|
@ -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,
|
||||
|
|
|
|||
|
|
@ -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
Loading…
Add table
Reference in a new issue