From 46b049c72b534efdc407c00e8ef24a83a8685e1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jhonatan=20Mat=C3=ADas?= Date: Thu, 18 Sep 2025 19:40:32 +0200 Subject: [PATCH] Fix Typos (#255) --- src-web/components/EnvironmentEditDialog.tsx | 2 +- src-web/components/core/Input.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src-web/components/EnvironmentEditDialog.tsx b/src-web/components/EnvironmentEditDialog.tsx index c2987d17..b885cc84 100644 --- a/src-web/components/EnvironmentEditDialog.tsx +++ b/src-web/components/EnvironmentEditDialog.tsx @@ -254,7 +254,7 @@ const EnvironmentEditor = function ({ ) : ( <> valueVisibility.set((v) => !v)}> - {valueVisibility.value ? 'Conceal Values' : 'Reveal Values'} + {valueVisibility.value ? 'Hide Values' : 'Show Values'} )} diff --git a/src-web/components/core/Input.tsx b/src-web/components/core/Input.tsx index ec875cbf..e24018b6 100644 --- a/src-web/components/core/Input.tsx +++ b/src-web/components/core/Input.tsx @@ -440,7 +440,7 @@ function EncryptionInput({ const dropdownItems = useMemo( () => [ { - label: state.obscured ? 'Reveal' : 'Conceal', + label: state.obscured ? 'Show' : 'Hide', disabled: isEncryptionEnabled && state.fieldType === 'text', leftSlot: , onSelect: () => setState((s) => ({ ...s, obscured: !s.obscured })),