From f300183630fa9cee5eb5b50240c105652b1ff5e8 Mon Sep 17 00:00:00 2001 From: boazpoolman Date: Mon, 28 Nov 2022 18:40:44 +0100 Subject: [PATCH] style: Fix eslint issues --- .eslintrc | 2 ++ admin/src/state/actions/Config.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 1f2472f..6120fb2 100644 --- a/.eslintrc +++ b/.eslintrc @@ -30,6 +30,8 @@ "indent" : "off", + "react/jsx-fragments": "off", + "react/jsx-props-no-spreading": "off", "react-hooks/rules-of-hooks": "error", diff --git a/admin/src/state/actions/Config.js b/admin/src/state/actions/Config.js index 8e149b9..5922bfe 100644 --- a/admin/src/state/actions/Config.js +++ b/admin/src/state/actions/Config.js @@ -64,7 +64,7 @@ export function importAllConfig(partialDiff, force, toggleNotification) { body: { force, config: partialDiff, - } + }, }); toggleNotification({ type: 'success', message }); dispatch(getAllConfigDiff(toggleNotification));