Attempt at #12289 (edit Félix: removed fix keyword since I don't think it fixes it) --------- Co-authored-by: Félix Malfait <felix.malfait@gmail.com> Co-authored-by: Félix Malfait <felix@twenty.com>
6 lines
176 B
TypeScript
6 lines
176 B
TypeScript
import { createState } from 'twenty-ui/utilities';
|
|
export const isCurrentUserLoadedState = createState<boolean>({
|
|
key: 'isCurrentUserLoadedState',
|
|
defaultValue: false,
|
|
});
|