Files
twenty/packages/twenty-front/src/modules/client-config/states/apiConfigState.ts
Weiko 1eb9c582f3 Rename mutation maximum affected records (#6042)
As per my last comment on https://github.com/twentyhq/twenty/pull/6039,
we decided to rename this var
2024-06-26 18:00:25 +02:00

9 lines
205 B
TypeScript

import { createState } from 'twenty-ui';
import { ApiConfig } from '~/generated/graphql';
export const apiConfigState = createState<ApiConfig | null>({
key: 'apiConfigState',
defaultValue: null,
});