diff --git a/front/src/utils/GatewayHttpClient.js b/front/src/utils/GatewayHttpClient.js index 83f6158680..7b79bef60d 100644 --- a/front/src/utils/GatewayHttpClient.js +++ b/front/src/utils/GatewayHttpClient.js @@ -17,7 +17,10 @@ export class GatewayHttpClient { return result; } catch (e) { const error = { - response: e + response: { + status: e.status, + data: e + } }; throw error; }