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

@@ -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 })),