diff --git a/src/scripts/clientUtils.js b/src/scripts/clientUtils.js index c9d1b3b4b1..4de4d9113e 100644 --- a/src/scripts/clientUtils.js +++ b/src/scripts/clientUtils.js @@ -122,9 +122,9 @@ export function processErrorResponse(response) { status = response.statusText; } - alert({ + baseAlert({ title: status, - message: response.headers ? response.headers.get('X-Application-Error-Code') : null + text: response.headers ? response.headers.get('X-Application-Error-Code') : null }); }