Fix accessing user profile in admin section

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-11-22 09:29:38 +01:00
parent 1d1574b426
commit 3fd79f89a8
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ import { IPerson } from "../../types/actor";
// @ts-ignore
const { user } = this;
return {
title: user.email,
title: user?.email,
};
},
})