File tree 1 file changed +14
-0
lines changed
1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,12 @@ export default function UpdateUserModal() {
26
26
photoUrl : user ?. photoUrl || null ,
27
27
} ) ;
28
28
29
+ const [ shouldUpdatePassword , setShouldUpdatePassword ] =
30
+ useState < boolean > ( false ) ;
31
+
32
+ const handleSetShouldUpdatePassword = ( ) =>
33
+ setShouldUpdatePassword ( ! shouldUpdatePassword ) ;
34
+
29
35
const [ , setImgSrc ] = useState ( "" ) ;
30
36
31
37
const [ file , setFile ] = useState < File | null > ( null ) ;
@@ -184,7 +190,15 @@ export default function UpdateUserModal() {
184
190
name = "username"
185
191
value = { updatedUser . username }
186
192
/>
193
+ < ButtonForm
194
+ disabled = { showLoading }
195
+ type = "button"
196
+ model = { showLoading ? "disabled" : "warning" }
197
+ placeholder = "Update password"
198
+ handleOnClick = { handleSetShouldUpdatePassword }
199
+ />
187
200
< InputForm
201
+ hidden = { shouldUpdatePassword }
188
202
label = "User password"
189
203
placeholder = "**********"
190
204
id = "password"
You can’t perform that action at this time.
0 commit comments