refactor: standardize JsonStringified casing (#20101)

## Summary
- Rename safeParseRelativeDateFilterJSONStringified to
safeParseRelativeDateFilterJsonStringified
- Update the matching utility file, exports, tests, and workflow usages

Part of #19839.

## Validation
- CI passed
This commit is contained in:
Sai Sathwik P
2026-04-28 05:01:26 -04:00
committed by GitHub
parent df3e217d64
commit a5cd64daf5
5 changed files with 51 additions and 51 deletions
@@ -24,7 +24,7 @@ import {
getFirstDayOfTheWeekAsANumberForDateFNS,
isDefined,
type RelativeDateFilter,
safeParseRelativeDateFilterJSONStringified,
safeParseRelativeDateFilterJsonStringified,
subUnitFromDateTime,
} from 'twenty-shared/utils';
@@ -38,7 +38,7 @@ export const parseAndEvaluateRelativeDateFilter = ({
relativeDateString: string;
}): boolean => {
const relativeDateFilterValue =
safeParseRelativeDateFilterJSONStringified(relativeDateString);
safeParseRelativeDateFilterJsonStringified(relativeDateString);
if (!relativeDateFilterValue) {
return false;