diff --git a/src/sentry/templates/sentry/partial/preload-data.html b/src/sentry/templates/sentry/partial/preload-data.html index bebe3db5c44e..c3a60407957c 100644 --- a/src/sentry/templates/sentry/partial/preload-data.html +++ b/src/sentry/templates/sentry/partial/preload-data.html @@ -45,9 +45,9 @@ }; return [json, response.statusText, responseMeta]; } - throw [response.status, response.statusText]; - } catch (error) { - throw [error.status, error.statusText]; + return null; + } catch { + return null; } }