diff options
Diffstat (limited to 'web/src/Doc.tsx')
-rw-r--r-- | web/src/Doc.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/Doc.tsx b/web/src/Doc.tsx index 28db714..44d120e 100644 --- a/web/src/Doc.tsx +++ b/web/src/Doc.tsx @@ -22,9 +22,9 @@ const resultDocSchema = z.object({ id: z.number().int(), score: z.number(), domain: z.string(), - url: z.string().url(), + url: z.string(), title: z.string(), - images: z.string().url().array(), + images: z.string().array(), content: z.string(), }) |