fix(ui): default to text input type for SensitiveInputs (#1568)
This commit is contained in:
@@ -34,7 +34,7 @@ const SensitiveInput: React.FC<SensitiveInputProps> = ({
|
||||
isHidden
|
||||
? 'password'
|
||||
: props.type !== 'password'
|
||||
? props.type
|
||||
? props.type ?? 'text'
|
||||
: 'text'
|
||||
}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user