Skip to content

Commit 4723c2b

Browse files
author
junior
committed
style: run oxfmt to fix pre-commit format check
1 parent 0ad8c2a commit 4723c2b

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

static/app/views/sentryAppExternalInstallation/index.spec.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,9 @@ describe('SentryAppExternalInstallation', () => {
366366
MockApiClient.addMockResponse({
367367
url: `/sentry-apps/${sentryApp.slug}/`,
368368
statusCode: 403,
369-
body: {detail: 'User must be in the app owner\'s organization for unpublished apps'},
369+
body: {
370+
detail: "User must be in the app owner's organization for unpublished apps",
371+
},
370372
});
371373

372374
render(<SentryAppExternalInstallation />, {

static/app/views/sentryAppExternalInstallation/index.tsx

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -203,21 +203,15 @@ function SentryAppExternalInstallationContent() {
203203
}
204204

205205
if (sentryAppError) {
206-
return (
207-
<LoadingError message={t('There was an error loading this integration.')} />
208-
);
206+
return <LoadingError message={t('There was an error loading this integration.')} />;
209207
}
210208

211209
if (orgsError) {
212-
return (
213-
<LoadingError message={t('There was an error loading your organizations.')} />
214-
);
210+
return <LoadingError message={t('There was an error loading your organizations.')} />;
215211
}
216212

217213
if (!sentryApp) {
218-
return (
219-
<LoadingError message={t('This integration could not be found.')} />
220-
);
214+
return <LoadingError message={t('This integration could not be found.')} />;
221215
}
222216

223217
return (

0 commit comments

Comments
 (0)