Skip to content

Commit b9dea2b

Browse files
fix(ts): Correct broken typeing in projectDetail/utils (#87407)
This regressed because we were missing the tsc CI check in sentry since removing the tsc checking in getsentry.
1 parent a7c7964 commit b9dea2b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/projectDetail/utils.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe('ProjectDetail Utils', function () {
8686
});
8787

8888
it('returns correct query text for other platforms', () => {
89-
expect(getANRIssueQueryText('windows')).toBe('mechanism:[ANR,AppExitInfo]');
89+
expect(getANRIssueQueryText('other')).toBe('mechanism:[ANR,AppExitInfo]');
9090
expect(getANRIssueQueryText()).toBe('mechanism:[ANR,AppExitInfo]');
9191
});
9292
});

0 commit comments

Comments
 (0)