Remove use of alert abstraction

This commit is contained in:
Bill Thornton 2021-05-26 13:17:32 -04:00
parent 3272d12f64
commit dc294a5a4b

View file

@ -122,9 +122,9 @@ export function processErrorResponse(response) {
status = response.statusText; status = response.statusText;
} }
alert({ baseAlert({
title: status, title: status,
message: response.headers ? response.headers.get('X-Application-Error-Code') : null text: response.headers ? response.headers.get('X-Application-Error-Code') : null
}); });
} }