Fix Typos (#255)

This commit is contained in:
Jhonatan Matías
2025-09-18 19:40:32 +02:00
committed by GitHub
parent fec64b5c02
commit 46b049c72b
2 changed files with 2 additions and 2 deletions

View File

@@ -254,7 +254,7 @@ const EnvironmentEditor = function ({
) : (
<>
<BadgeButton color="secondary" onClick={() => valueVisibility.set((v) => !v)}>
{valueVisibility.value ? 'Conceal Values' : 'Reveal Values'}
{valueVisibility.value ? 'Hide Values' : 'Show Values'}
</BadgeButton>
</>
)}

View File

@@ -440,7 +440,7 @@ function EncryptionInput({
const dropdownItems = useMemo<DropdownItem[]>(
() => [
{
label: state.obscured ? 'Reveal' : 'Conceal',
label: state.obscured ? 'Show' : 'Hide',
disabled: isEncryptionEnabled && state.fieldType === 'text',
leftSlot: <Icon icon={state.obscured ? 'eye' : 'eye_closed'} />,
onSelect: () => setState((s) => ({ ...s, obscured: !s.obscured })),