mirror of
https://github.com/strapi/strapi.git
synced 2025-12-28 07:33:17 +00:00
use full_name instead of concatenating first_name and last_name
This commit is contained in:
parent
32f9e9a780
commit
7dbf8896ee
@ -289,7 +289,7 @@ const getInitialProviders = ({ purest }) => ({
|
||||
.then(({ body }) => {
|
||||
const patreonData = body.data.attributes;
|
||||
return {
|
||||
username: `${patreonData.first_name} ${patreonData.last_name}`,
|
||||
username: patreonData.full_name,
|
||||
email: patreonData.email,
|
||||
};
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user