87a9ecee28
Need to create a new branch because original branch name is `main` and we cannot push additional commits Linked to https://github.com/twentyhq/twenty/pull/4718   --------- Co-authored-by: DGamer007 <prajapatidhruv266@gmail.com>
14 lines
299 B
TypeScript
14 lines
299 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: false,
|
|
microsoft: false,
|
|
},
|
|
});
|