From f5b69e0de3a0277b01738e5436357fd228abe16e Mon Sep 17 00:00:00 2001 From: grafixeyehero <32230989+grafixeyehero@users.noreply.github.com> Date: Fri, 14 Jan 2022 19:20:27 +0300 Subject: [PATCH] apply suggestions --- src/components/pages/UserParentalControl.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/pages/UserParentalControl.tsx b/src/components/pages/UserParentalControl.tsx index 7d408fd6c..98e3dba54 100644 --- a/src/components/pages/UserParentalControl.tsx +++ b/src/components/pages/UserParentalControl.tsx @@ -168,7 +168,6 @@ const UserParentalControl: FunctionComponent = () => { const userId = appRouter.param('userId'); const promise1 = window.ApiClient.getUser(userId); const promise2 = window.ApiClient.getParentalRatings(); - // eslint-disable-next-line compat/compat Promise.all([promise1, promise2]).then(function (responses) { loadUser(responses[0], responses[1]); });