1 import { useEarlyAccess } from '@proton/components';
2 import { isMobile } from '@proton/shared/lib/helpers/browser';
4 export default function useIsEditEnabled() {
5 const { currentEnvironment } = useEarlyAccess();
6 return currentEnvironment === 'alpha' && !isMobile();