Fix to clear empty lastName string when accepting an invite to budibase
This commit is contained in:
parent
941b2e4200
commit
fd5743a9da
|
@ -34,7 +34,7 @@ export function createUsersStore() {
|
|||
inviteCode,
|
||||
password,
|
||||
firstName,
|
||||
lastName,
|
||||
lastName: !lastName?.trim() ? undefined : lastName,
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue