As per my last comment on https://github.com/twentyhq/twenty/pull/6039, we decided to rename this var
9 lines
205 B
TypeScript
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,
|
|
});
|