mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-30 09:11:57 -05: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;
|
|
}
|