diff --git a/static/app/components/events/interfaces/sourceMapsDebuggerModal.tsx b/static/app/components/events/interfaces/sourceMapsDebuggerModal.tsx index 15f1f5f0d3bf05..19406171bf18c6 100644 --- a/static/app/components/events/interfaces/sourceMapsDebuggerModal.tsx +++ b/static/app/components/events/interfaces/sourceMapsDebuggerModal.tsx @@ -840,6 +840,19 @@ function ReleaseSourceFileMatchingChecklistItem({ ))} +

+ {/* wrong-dist is not deterministically returned in the case of wrong dist values because of database restrictions */} + {sourceResolutionResults.dist !== null + ? tct( + 'This event has a dist value [dist]. Please check that you uploaded your artifacts with dist [dist].', + { + dist: {sourceResolutionResults.dist}, + } + ) + : t( + "This event doesn't have a dist value. Please check that you uploaded your artifacts without dist value." + )} +

{/* TODO: Link to uploaded files for this release. */}

{tct( @@ -946,6 +959,19 @@ function ReleaseSourceMapMatchingChecklistItem({ } )}

+

+ {/* wrong-dist is not deterministically returned in the case of wrong dist values because of database restrictions */} + {sourceResolutionResults.dist !== null + ? tct( + 'This event has a dist value [dist]. Please check that you uploaded your sourcemaps with dist [dist].', + { + dist: {sourceResolutionResults.dist}, + } + ) + : t( + "This event doesn't have a dist value. Please check that you uploaded your sourcemaps without dist value." + )} +

{/* TODO: Link to Uploaded Artifacts */}