diff --git a/app/core/models/user/display_mixin.py b/app/core/models/user/display_mixin.py index 6ad0009..2f3a939 100644 --- a/app/core/models/user/display_mixin.py +++ b/app/core/models/user/display_mixin.py @@ -14,4 +14,4 @@ class DisplayMixin: if not plain_text: raise NotImplementedError - return f"{self.first_name} {self.last_name}".strip() \ No newline at end of file + return f"{self.meta.get('first_name', '')} {self.meta.get('last_name', '')}".strip() \ No newline at end of file