Skip to content

Commit

Permalink
fix: fix share query
Browse files Browse the repository at this point in the history
  • Loading branch information
nichenqin committed Aug 22, 2024
1 parent 356e891 commit dcd437b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/queries/src/get-share-records.query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const getShareRecordsQuery = z.object({
shareId: shareIdSchema,
tableId: tableId.optional(),
viewId: viewId.optional(),
q: z.string().optional(),
q: z.string().optional().nullable(),
})

export type IGetShareRecordsQuery = z.infer<typeof getShareRecordsQuery>
Expand Down

0 comments on commit dcd437b

Please sign in to comment.