464a480043
Might already fix #13793
8 lines
253 B
TypeScript
8 lines
253 B
TypeScript
import { type AuthProviders } from '~/generated/graphql';
|
|
import { createState } from 'twenty-ui/utilities';
|
|
|
|
export const workspaceAuthProvidersState = createState<AuthProviders | null>({
|
|
key: 'workspaceAuthProvidersState',
|
|
defaultValue: null,
|
|
});
|