Merged in fix/SW-2929-hotjar-suppress-confirmation (pull request #2286)
fix(SW-2929): suppress personal info on confirmation page * fix(SW-2929): suppress personal info on confirmation page Approved-by: Christian Andolf
This commit is contained in:
committed by
Linus Flood
parent
b9043ce5c9
commit
0bd78bc7a6
@@ -192,7 +192,7 @@ export default function Room({
|
||||
</Typography>
|
||||
{booking.guest.membershipNumber ? (
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>
|
||||
<p data-hj-suppress>
|
||||
{intl.formatMessage(
|
||||
{
|
||||
defaultMessage: "Friend no. {value}",
|
||||
@@ -206,12 +206,12 @@ export default function Room({
|
||||
) : null}
|
||||
{booking.guest.phoneNumber ? (
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>{booking.guest.phoneNumber}</p>
|
||||
<p data-hj-suppress>{booking.guest.phoneNumber}</p>
|
||||
</Typography>
|
||||
) : null}
|
||||
{booking.guest.email ? (
|
||||
<Typography variant="Body/Paragraph/mdRegular">
|
||||
<p>{booking.guest.email}</p>
|
||||
<p data-hj-suppress>{booking.guest.email}</p>
|
||||
</Typography>
|
||||
) : null}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user