mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 05:56:47 +01:00
8 lines
264 B
TypeScript
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;
|
|
}
|