Split from https://github.com/twentyhq/twenty/pull/4518 Co-authored-by: Charles Bochet <charlesBochet@users.noreply.github.com>
9 lines
261 B
TypeScript
9 lines
261 B
TypeScript
import { createState } from 'twenty-ui';
|
|
|
|
import { AuthProviders } from '~/generated/graphql';
|
|
|
|
export const authProvidersState = createState<AuthProviders>({
|
|
key: 'authProvidersState',
|
|
defaultValue: { google: false, magicLink: false, password: true },
|
|
});
|