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
This commit is contained in:
Weiko
2024-06-26 18:00:25 +02:00
committed by GitHub
parent 87abc1b31d
commit 1eb9c582f3
10 changed files with 26 additions and 13 deletions

View File

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