From 728ba716b81418afd14a144296637ff4cc2efae0 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 24 Jun 2026 19:08:36 +0300 Subject: [PATCH] lint --- src/api/helpers.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/api/helpers.js b/src/api/helpers.js index 6986a6ab7..5fb11a183 100644 --- a/src/api/helpers.js +++ b/src/api/helpers.js @@ -122,12 +122,7 @@ export const promisedRequest = async ({ if (ok) { return { response, status, data } } else { - throw new StatusCodeError( - response.status, - data, - { url, options }, - response, - ) + throw new StatusCodeError(response.status, data, { url, options }, response) } }