Skip to content

Commit

Permalink
fix: suppress name in hotjar recordings
Browse files Browse the repository at this point in the history
  • Loading branch information
aalemayhu committed Jul 10, 2024
1 parent 5201bcb commit dfecae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/SettingsPage/SettingsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function SettingsPage({ setErrorMessage }: Readonly<SettingsPageP
<SettingsPageContainer>
<div className="box">
<h1>Settings</h1>
{user && <p>You are logged in as {user?.name} (email: {user?.email})</p>}
{user && <p data-hj-suppress>You are logged in as {user?.name} (email: {user?.email})</p>}
{locals?.patreon && <p>You are a Patreon member</p>}
{locals?.subscriber && <p>You are a Subscriber</p>}
<p>
Expand Down

0 comments on commit dfecae1

Please sign in to comment.