mirror of
https://github.com/sct/overseerr.git
synced 2025-09-29 05:24:44 +02:00
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