Merged in fix/hotjar-suppress (pull request #3211)

Fix/hotjar suppress

* fix(hotjar): suppress personal info on my pages

* fix(hotjar): suppress more data


Approved-by: Linus Flood
This commit is contained in:
Bianca Widstam
2025-11-27 13:09:37 +00:00
parent a2c517db2c
commit 5ac7e5deac
5 changed files with 14 additions and 12 deletions

View File

@@ -124,15 +124,15 @@ export default function ModifyContact({
</Typography>
<div className={styles.container}>
<Typography variant="Body/Paragraph/mdBold">
<p>
<p data-hj-suppress>
{getValues("firstName")} {getValues("lastName")}
</p>
</Typography>
<Typography variant="Body/Paragraph/mdRegular">
<p>{getValues("email")}</p>
<p data-hj-suppress>{getValues("email")}</p>
</Typography>
<Typography variant="Body/Paragraph/mdRegular">
<p>{phoneNumber}</p>
<p data-hj-suppress>{phoneNumber}</p>
</Typography>
</div>
</>