Skip to content
Snippets Groups Projects
Commit 1025a902 authored by Henrik's avatar Henrik
Browse files

fix: remove password field from update DTO

parent 8e452fba
No related branches found
No related tags found
No related merge requests found
Pipeline #280830 passed with warnings
...@@ -62,8 +62,7 @@ const handleSubmit = async () => { ...@@ -62,8 +62,7 @@ const handleSubmit = async () => {
const updateUserPayload: UserUpdateDTO = { const updateUserPayload: UserUpdateDTO = {
firstName: firstNameRef.value, firstName: firstNameRef.value,
lastName: surnameRef.value, lastName: surnameRef.value,
email: emailRef.value, email: emailRef.value
password: passwordRef.value
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment