diff --git a/src/templates/full-profile-page.js b/src/templates/full-profile-page.js
index 30ea7e66..e2f7ae6c 100644
--- a/src/templates/full-profile-page.js
+++ b/src/templates/full-profile-page.js
@@ -215,7 +215,7 @@ export const FullProfilePageTemplate = ({ user, getIDPProfile, updateProfile, up
const apiBaseUrl = getEnvVariable(SUMMIT_API_BASE_URL);
const url = `${apiBaseUrl}/api/v1/summits/${summit.id}/orders/all/tickets/me?${params}`;
-
+
const response = await fetch(url);
if (response.ok) {
@@ -310,11 +310,14 @@ export const FullProfilePageTemplate = ({ user, getIDPProfile, updateProfile, up
- Hello,
- {user.idpProfile.given_name} {user.idpProfile.family_name}
+ Hello
+ {personalProfile.firstName || personalProfile.lastName ?
+ `, ${personalProfile.firstName} ${personalProfile.lastName}`
+ : ""
+ }
- @{user.idpProfile?.nickname}
+ @{personalProfile?.identifier}
{showCertificateDownload && (
@@ -498,7 +501,7 @@ export const FullProfilePageTemplate = ({ user, getIDPProfile, updateProfile, up
- By electing to show your information you are indicating that other attendees at the
+ By electing to show your information you are indicating that other attendees at the
event(s) you are registered for will be able to see this information.
@@ -697,13 +700,13 @@ export const FullProfilePageTemplate = ({ user, getIDPProfile, updateProfile, up
{showProfile &&
- handleTogglePopup(false)}
- />
+ handleTogglePopup(false)}
+ />
}