Skip to content

Commit

Permalink
SCAL-218168 filterToRuntimeFilters parser
Browse files Browse the repository at this point in the history
  • Loading branch information
yinstardev committed Aug 27, 2024
1 parent 166295a commit 09128f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/filtersToRuntimeFilters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const convertFiltersToRuntimeFilters = (liveboardFiltersData: any): Runti
values.forEach((val: any) => {
if (typeof val !== 'object' || val === null) {
throw new ValidationError(
'Value must be an object with a string key property',
'Value must be an object and not null',
);
}
if (!('key' in val)) {
Expand Down

0 comments on commit 09128f1

Please sign in to comment.