Fixes the issue from introduced when alowing gmail and outlook. fixes https://github.com/twentyhq/core-team-issues/issues/370
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
import { createState } from '@ui/utilities/state/utils/createState';
|
|
|
|
export const isGoogleMessagingEnabledState = createState<boolean>({
|
|
key: 'isGoogleMessagingEnabled',
|
|
defaultValue: false,
|
|
});
|