Skip to content

Commit

Permalink
Fixes the types that were recently changed from master
Browse files Browse the repository at this point in the history
  • Loading branch information
FrankHassanabad committed Mar 18, 2020
1 parent 84c1ba6 commit 78e165b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ export const signalParamsSchema = () =>
type: schema.string(),
references: schema.arrayOf(schema.string(), { defaultValue: [] }),
version: schema.number({ defaultValue: 1 }),
lists: schema.maybe(schema.arrayOf(schema.object({}, { allowUnknowns: true }))),
lists: schema.maybe(schema.arrayOf(schema.object({}, { unknowns: 'allow' }))),
});

0 comments on commit 78e165b

Please sign in to comment.