Skip to content

Commit 06509a2

Browse files
committed
feat: added button to decide if user wants to update passwor in update user modal
1 parent b482053 commit 06509a2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/app/about/components/update-user-modal.tsx

+14
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,12 @@ export default function UpdateUserModal() {
2626
photoUrl: user?.photoUrl || null,
2727
});
2828

29+
const [shouldUpdatePassword, setShouldUpdatePassword] =
30+
useState<boolean>(false);
31+
32+
const handleSetShouldUpdatePassword = () =>
33+
setShouldUpdatePassword(!shouldUpdatePassword);
34+
2935
const [, setImgSrc] = useState("");
3036

3137
const [file, setFile] = useState<File | null>(null);
@@ -184,7 +190,15 @@ export default function UpdateUserModal() {
184190
name="username"
185191
value={updatedUser.username}
186192
/>
193+
<ButtonForm
194+
disabled={showLoading}
195+
type="button"
196+
model={showLoading ? "disabled" : "warning"}
197+
placeholder="Update password"
198+
handleOnClick={handleSetShouldUpdatePassword}
199+
/>
187200
<InputForm
201+
hidden={shouldUpdatePassword}
188202
label="User password"
189203
placeholder="**********"
190204
id="password"

0 commit comments

Comments
 (0)