Enable add person on People Table (#111)

Add possibility to add Person on People table
This commit is contained in:
Charles Bochet
2023-05-08 00:15:32 +02:00
committed by GitHub
parent 50a4a97145
commit 48a75358b4
11 changed files with 301 additions and 153 deletions

View File

@ -54,7 +54,7 @@ export const mapCompany = (company: GraphqlQueryCompany): Company => ({
email: company.account_owner.email,
displayName: company.account_owner.displayName,
}
: undefined,
: null,
creationDate: new Date(company.created_at),
opportunities: [],
});