fix: fix Apollo client cache update error for Links field (#5473)
Fixes #5437
This commit is contained in:
5
packages/twenty-front/src/utils/string/pascalCase.ts
Normal file
5
packages/twenty-front/src/utils/string/pascalCase.ts
Normal file
@ -0,0 +1,5 @@
|
||||
import camelCase from 'lodash.camelcase';
|
||||
|
||||
import { capitalize } from '~/utils/string/capitalize';
|
||||
|
||||
export const pascalCase = (str: string) => capitalize(camelCase(str));
|
||||
Reference in New Issue
Block a user