mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-16 14:06:49 +01:00
* Update environment model to get ready for request/folder environments * Folder environments in UI * Folder environments working * Tweaks and fixes * Tweak environment encryption UX * Tweak environment encryption UX * Address comments * Update fn name * Add tsc back to lint rules * Update src-web/components/EnvironmentEditor.tsx * Merge remote-tracking branch 'origin/folder-environments' into folder…
11 lines
333 B
TypeScript
11 lines
333 B
TypeScript
import type { Environment } from '@yaakapp-internal/models';
|
|
import { useKeyValue } from './useKeyValue';
|
|
|
|
export function useEnvironmentValueVisibility(environment: Environment) {
|
|
return useKeyValue<boolean>({
|
|
namespace: 'global',
|
|
key: ['environmentValueVisibility', environment.workspaceId],
|
|
fallback: false,
|
|
});
|
|
}
|