2
0

🐛 (results) Fix results display when variable has undefined value

This commit is contained in:
Baptiste Arnaud
2022-11-23 09:17:37 +01:00
parent ec0e4bee77
commit d80cc1b248
4 changed files with 14 additions and 7 deletions

View File

@ -12,7 +12,7 @@ export const variableSchema = z.object({
export const variableWithValueSchema = z.object({
id: z.string(),
name: z.string(),
value: z.string().nullable(),
value: z.string(),
})
/**