From c0f3aecad3a6e1aecb255eb0d3b568c2d30a178c Mon Sep 17 00:00:00 2001 From: Tuan Dang Date: Sun, 13 Aug 2023 11:12:07 +0700 Subject: [PATCH] Fix lint issues --- .../AuthMethodSection/AuthMethodSection.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx b/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx index 0f3647350..42917aae6 100644 --- a/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx +++ b/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx @@ -119,15 +119,16 @@ export const AuthMethodSection = () => { {user && authMethodOpts.map((authMethodOpt) => { return (
-
+
-

{authMethodOpt.label}

onAuthMethodToggle(value, authMethodOpt)} isChecked={authMethods?.includes(authMethodOpt.value) ?? false} - /> + > +

{authMethodOpt.label}

+
); })}