We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3102b44 commit efbd4b0Copy full SHA for efbd4b0
ui/src/parsers/feastSFVS.ts
@@ -28,8 +28,8 @@ const FeastSFVSchema = z.object({
28
}),
29
30
meta: z.object({
31
- createdTimestamp: z.string().transform((val) => new Date(val)),
32
- lastUpdatedTimestamp: z.string().transform((val) => new Date(val)),
+ createdTimestamp: z.string().transform((val) => new Date(val)).optional(),
+ lastUpdatedTimestamp: z.string().transform((val) => new Date(val)).optional(),
33
34
});
35
0 commit comments