From dc3f2c78c1be86871f80862677e7fab64b9979e3 Mon Sep 17 00:00:00 2001 From: Sheen Capadngan Date: Sun, 6 Aug 2023 22:38:24 +0800 Subject: [PATCH] resolved lint issue --- .../AuthMethodSection/AuthMethodSection.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx b/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx index 6e3b006e3..5458525ce 100644 --- a/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx +++ b/frontend/src/views/Settings/PersonalSettingsPage/AuthMethodSection/AuthMethodSection.tsx @@ -13,7 +13,7 @@ import { useUpdateUserAuthProviders } from "@app/hooks/api"; -const authMethods = [ +const authMethodList = [ { label: "Email", value: "email" }, { label: "Google SSO", value: "google" }, { label: "GitHub SSO", value: "github" }, @@ -103,7 +103,7 @@ export const AuthMethodSection = () => {
{ - authMethods.map(authMethod => ( + authMethodList.map(authMethod => (