File tree Expand file tree Collapse file tree 2 files changed +6
-10
lines changed
static/app/views/sentryAppExternalInstallation Expand file tree Collapse file tree 2 files changed +6
-10
lines changed Original file line number Diff line number Diff 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 /> , {
Original file line number Diff line number Diff 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 (
You can’t perform that action at this time.
0 commit comments