* feat: wip onboarding * fix: generate graphql front * wip: onboarding * feat: login/register and edit profile * fix: unused import * fix: test * Use DEBUG_MODE instead of STAGE and mute typescript depth exceed errors * Fix seeds * Fix onboarding when coming from google * Fix * Fix lint * Fix ci * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
11 lines
262 B
TypeScript
11 lines
262 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { GetCurrentUserQuery } from '~/generated/graphql';
|
|
|
|
export type CurrentUser = GetCurrentUserQuery['currentUser'];
|
|
|
|
export const currentUserState = atom<CurrentUser | null>({
|
|
key: 'currentUserState',
|
|
default: null,
|
|
});
|