mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-06-28 12:56:22 +02:00
Split codebase (#455)
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
import { useAtomValue } from "jotai";
|
||||
import { activeWorkspaceMetaAtom } from "./useActiveWorkspace";
|
||||
|
||||
export function useIsEncryptionEnabled() {
|
||||
const workspaceMeta = useAtomValue(activeWorkspaceMetaAtom);
|
||||
return workspaceMeta?.encryptionKey != null;
|
||||
}
|
||||
Reference in New Issue
Block a user