Skip to content

Commit b8fd217

Browse files
Abdullah KhanAbdullah Khan
authored andcommitted
feat(source-map-issues): Addressing pr suggestions
1 parent e989b3b commit b8fd217

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

static/app/views/issueDetails/configurationIssues/sourceMapIssues/diagnosisSection.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,10 @@ interface DiagnosisSectionProps {
150150
}
151151

152152
export function DiagnosisSection({sourceMapQuery}: DiagnosisSectionProps) {
153-
const {data, isPending, isError} = sourceMapQuery;
153+
const {data, isLoading, isError} = sourceMapQuery;
154154

155155
function renderContent(): ReactNode {
156-
if (isPending) {
156+
if (isLoading) {
157157
return <LoadingIndicator mini />;
158158
}
159159
if (isError) {

0 commit comments

Comments
 (0)