mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-18 07:23:51 +01:00
8 lines
258 B
TypeScript
8 lines
258 B
TypeScript
import { useAtomValue } from 'jotai';
|
|
import { activeWorkspaceMetaAtom } from './useActiveWorkspace';
|
|
|
|
export function useIsEncryptionEnabled() {
|
|
const workspaceMeta = useAtomValue(activeWorkspaceMetaAtom);
|
|
return workspaceMeta?.encryptionKey != null;
|
|
}
|