You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"We've encountered 1 problem de-minifying your applications source code!"
164
+
"We've encountered 1 problem un-minifying your applications source code!"
165
165
)
166
166
).toBeInTheDocument();
167
167
168
168
constexpandedMessage=
169
-
'The given abs_path of the stack frame is absValue which is not a valid URL. Please refer to the instructions in our docs guide for help with troubleshooting the issue.';
169
+
'The abs_path of the stack frame is absValue which is not a valid URL. Read our docs for troubleshooting help.';
Copy file name to clipboardExpand all lines: static/app/components/events/interfaces/crashContent/exception/sourceMapDebug.tsx
+18-8Lines changed: 18 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ function getErrorMessage(
63
63
{
64
64
title: t('Event missing Release tag'),
65
65
desc: t(
66
-
'Integrate Sentry into your release pipeline. You can do this with a tool like Webpack or using the CLI.'
66
+
'Integrate Sentry into your release pipeline using a tool like Webpack or the CLI.'
67
67
),
68
68
docsLink: defaultDocsLink,
69
69
},
@@ -90,7 +90,7 @@ function getErrorMessage(
90
90
{
91
91
title: t('Sentry not part of release pipeline'),
92
92
desc: tct(
93
-
'Integrate Sentry into your release pipeline. You can do this with a tool like Webpack or using the CLI. Please note the release must be the same as being set in your [init]. The value for this event is [version].',
93
+
"Integrate Sentry into your release pipeline using a tool like Webpack or the CLI. Your release must match what's set in your [init]. The value for this event is [version].",
94
94
{
95
95
init: sentryInit,
96
96
version: <code>{error.data.version}</code>,
@@ -104,7 +104,7 @@ function getErrorMessage(
104
104
{
105
105
title: t('Source Maps not uploaded'),
106
106
desc: t(
107
-
'It looks like you are creating but not uploading your source maps. Please refer to the instructions in our docs guide for help with troubleshooting the issue.'
107
+
"It looks like you're creating, but not uploading your source maps. Read our docs for troubleshooting help."
108
108
),
109
109
docsLink: defaultDocsLink,
110
110
},
@@ -114,7 +114,7 @@ function getErrorMessage(
114
114
{
115
115
title: t('Invalid Absolute Path URL'),
116
116
desc: tct(
117
-
'The given [literalAbsPath] of the stack frame is [absPath] which is not a valid URL. Please refer to the instructions in our docs guide for help with troubleshooting the issue.',
117
+
'The [literalAbsPath] of the stack frame is [absPath] which is not a valid URL. Read our docs for troubleshooting help.',
118
118
{
119
119
absPath: <code>{error.data.absPath}</code>,
120
120
literalAbsPath: <code>abs_path</code>,
@@ -130,7 +130,7 @@ function getErrorMessage(
130
130
{
131
131
title: t('Absolute Path Mismatch'),
132
132
desc: tct(
133
-
"The given [literalAbsPath] of the stack frame is [absPath] which doesn't match any release artifact. Please refer to the instructions in our docs guide for help with troubleshooting the issue.",
133
+
"The given [literalAbsPath] of the stack frame is [absPath] which doesn't match any release artifact. Read our docs for troubleshooting help.",
134
134
{
135
135
absPath: <code>{error.data.absPath}</code>,
136
136
literalAbsPath: <code>abs_path</code>,
@@ -146,7 +146,7 @@ function getErrorMessage(
146
146
{
147
147
title: t('Dist Mismatch'),
148
148
desc: tct(
149
-
"The distribution identifier you are providing doesn't match. The [literalDist] value of [dist] configured in your [init] must be the same as the one used during source map upload. Please refer to the instructions in our docs guide for help with troubleshooting the issue.",
149
+
"The distribution identifier you're providing doesn't match. The [literalDist] value of [dist] configured in your [init] must be the same as the one used during source map upload. Read our docs for troubleshooting help.",
0 commit comments