File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ export default function UpdateUserModal() {
27
27
} ) ;
28
28
29
29
const [ shouldUpdatePassword , setShouldUpdatePassword ] =
30
- useState < boolean > ( false ) ;
30
+ useState < boolean > ( true ) ;
31
31
32
32
const handleSetShouldUpdatePassword = ( ) =>
33
33
setShouldUpdatePassword ( ! shouldUpdatePassword ) ;
Original file line number Diff line number Diff line change @@ -12,16 +12,21 @@ export default function InputForm({
12
12
handleOnChange,
13
13
name,
14
14
label,
15
+ hidden = false ,
15
16
...rest
16
17
} : InputFormProps ) {
17
18
return (
18
19
< div className = "mb-4" >
19
- < label className = "block text-gray-700 text-sm font-bold mb-2" >
20
+ < label
21
+ hidden = { hidden }
22
+ className = "block text-gray-700 text-sm font-bold mb-2"
23
+ >
20
24
{ label }
21
25
</ label >
22
26
23
27
< input
24
28
{ ...rest }
29
+ hidden = { hidden }
25
30
onChange = { handleOnChange }
26
31
className = "shadow appearance-none border rounded w-full py-2 px-3 text-gray-700 leading-tight focus:outline-none focus:shadow-outline"
27
32
id = { id }
You can’t perform that action at this time.
0 commit comments