Remove unused addAccount, removeAccount (#2009)

This commit is contained in:
ekzyis 2025-03-23 11:53:04 -05:00 committed by GitHub
parent 9b08988402
commit 3ff03960eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 <AccountContext.Provider value={value}>{children}</AccountContext.Provider>
}