Files
yaak/src-web/hooks/useIsEncryptionEnabled.ts
2025-04-15 07:18:26 -07:00

8 lines
264 B
TypeScript

import {useAtomValue} from "jotai/index";
import {activeWorkspaceMetaAtom} from "./useActiveWorkspace";
export function useIsEncryptionEnabled() {
const workspaceMeta = useAtomValue(activeWorkspaceMetaAtom);
return workspaceMeta?.encryptionKey != null;
}