From 861609ddc03e07869f9d8456f2aede2298008452 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Tue, 13 May 2025 11:38:02 -0700 Subject: [PATCH] Update encryption help --- src-web/components/EncryptionHelp.tsx | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src-web/components/EncryptionHelp.tsx b/src-web/components/EncryptionHelp.tsx index 167997e3..e687dedf 100644 --- a/src-web/components/EncryptionHelp.tsx +++ b/src-web/components/EncryptionHelp.tsx @@ -1,14 +1,13 @@ -import {VStack} from "./core/Stacks"; +import { VStack } from './core/Stacks'; export function EncryptionHelp() { - return -

- Encrypt values like secrets and tokens. When enabled, Yaak will also encrypt HTTP responses, - cookies, and authentication credentials automatically. -

-

- Encrypted data remains secure when syncing to the filesystem or Git, and when exporting or - sharing with others. -

+ return ( + +

Encrypt passwords, tokens, and other sensitive info when encryption is enabled.

+

+ Encrypted data remains secure when syncing to the filesystem or Git, and when exporting or + sharing with others. +

+ ); }