From 3ff03960ebee902792355ed80a1ab547a5ca125f Mon Sep 17 00:00:00 2001 From: ekzyis Date: Sun, 23 Mar 2025 11:53:04 -0500 Subject: [PATCH] Remove unused addAccount, removeAccount (#2009) --- components/account.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/components/account.js b/components/account.js index 18394b20..3a942245 100644 --- a/components/account.js +++ b/components/account.js @@ -30,14 +30,6 @@ export const AccountProvider = ({ children }) => { setAccounts(accounts) }, []) - const addAccount = useCallback(user => { - setAccounts(accounts => [...accounts, user]) - }, []) - - const removeAccount = useCallback(userId => { - setAccounts(accounts => accounts.filter(({ id }) => id !== userId)) - }, []) - const nextAccount = useCallback(async () => { const { status } = await fetch('/api/next-account', { credentials: 'include' }) // if status is 302, this means the server was able to switch us to the next available account @@ -76,14 +68,12 @@ export const AccountProvider = ({ children }) => { const value = useMemo( () => ({ accounts, - addAccount, - removeAccount, meAnon, setMeAnon, nextAccount, multiAuthErrors: errors }), - [accounts, addAccount, removeAccount, meAnon, setMeAnon, nextAccount, errors]) + [accounts, meAnon, setMeAnon, nextAccount]) return {children} }