diff --git a/modules/ProfilePageModules/sections/DetailProfile.tsx b/modules/ProfilePageModules/sections/DetailProfile.tsx index 8bfbc9f..a727ce4 100644 --- a/modules/ProfilePageModules/sections/DetailProfile.tsx +++ b/modules/ProfilePageModules/sections/DetailProfile.tsx @@ -30,11 +30,11 @@ const Field = ({ label, values = [''], link }: FieldProps) => { {values?.map((value) => ( <> {link ? ( - + {value} ) : ( -

{value}

+

{value}

)} ))} @@ -201,6 +201,14 @@ export const DetailProfile = () => { {userData?.ticket && ( <>
+ { + switch (userData.ticket.eventName) { + case 'FULL_EXPERIENCE_1': return 'Full Experience Pagi'; + case 'FULL_EXPERIENCE_2': return 'Full Experience Siang'; + case 'ONLINE_EXPERIENCE': return 'Online Experience'; + default: return ''; + } + })()]} />