Skip to content

Commit

Permalink
Fix a Prettier warning
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopkovacs committed Jan 14, 2024
1 parent aadfb60 commit 936f91b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions app/utils/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,11 @@ export const configSchema = z.object({
})
)
.min(1),
docSearch: z
.object({
appId: z.string(),
apiKey: z.string(),
indexName: z.string(),
}),
docSearch: z.object({
appId: z.string(),
apiKey: z.string(),
indexName: z.string(),
}),
menu: z.array(menuItemSchema),
frameworkMenus: z.array(frameworkMenuSchema).optional(),
users: z.array(z.string()).optional(),
Expand Down

0 comments on commit 936f91b

Please sign in to comment.