mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-02 22:33:39 +00:00
fix first/last name check bug
This commit is contained in:
parent
54ce196500
commit
c684fc3383
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ module.exports =
|
|||
user_id: user_id
|
||||
}
|
||||
|
||||
if req.body && req.body.firstName && req.body.firstName
|
||||
if req.body && req.body.firstName && req.body.lastName
|
||||
export_params.first_name = req.body.firstName.trim()
|
||||
export_params.last_name = req.body.lastName.trim()
|
||||
|
||||
|
|
Loading…
Reference in a new issue