Skip to content

Commit b9f0be6

Browse files
claudeborisno2
authored andcommitted
chore: format code with prettier
1 parent 849c7c9 commit b9f0be6

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

packages/ui/src/lib/filter-utils.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ export function parseFiltersFromURL(
3737
} else if (operator === 'is') {
3838
// Parse boolean for checkbox fields
3939
parsedValue = value === 'true'
40-
} else if (operator === 'gt' || operator === 'gte' || operator === 'lt' || operator === 'lte') {
40+
} else if (
41+
operator === 'gt' ||
42+
operator === 'gte' ||
43+
operator === 'lt' ||
44+
operator === 'lte'
45+
) {
4146
// Try to parse as number for numeric operators
4247
const num = Number(value)
4348
parsedValue = isNaN(num) ? value : num

0 commit comments

Comments
 (0)