feat: Add full name to the user signup form (#1534)

This commit is contained in:
Pranav Raj S 2020-12-21 14:05:19 +05:30 committed by GitHub
parent 796e376fa7
commit 9d3dda9a61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 163 additions and 219 deletions

View file

@ -26,7 +26,8 @@ export default {
const fetchPromise = new Promise((resolve, reject) => {
axios
.post(urlData.url, {
account_name: creds.name,
account_name: creds.accountName.trim(),
user_full_name: creds.fullName.trim(),
email: creds.email,
})
.then(response => {