We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08c805 commit 8d54d55Copy full SHA for 8d54d55
static/app/components/replays/alerts/missingReplayAlert.tsx
@@ -23,6 +23,18 @@ export default function MissingReplayAlert({orgSlug}: Props) {
23
),
24
t('The replay has been deleted by a member in your organization.'),
25
t('There were network errors and the replay was not saved.'),
26
+ tct(
27
+ "An ad-blocker was turned on for the user's session. [link:Read our docs] for a workaround.",
28
+ {
29
+ link: (
30
+ <ExternalLink
31
+ href={
32
+ 'https://docs.sentry.io/platforms/javascript/troubleshooting/#dealing-with-ad-blockers'
33
+ }
34
+ />
35
+ ),
36
37
38
];
39
return (
40
<Alert
0 commit comments