Remove unused addAccount, removeAccount (#2009)
This commit is contained in:
parent
9b08988402
commit
3ff03960eb
@ -30,14 +30,6 @@ export const AccountProvider = ({ children }) => {
|
|||||||
setAccounts(accounts)
|
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 nextAccount = useCallback(async () => {
|
||||||
const { status } = await fetch('/api/next-account', { credentials: 'include' })
|
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
|
// 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(
|
const value = useMemo(
|
||||||
() => ({
|
() => ({
|
||||||
accounts,
|
accounts,
|
||||||
addAccount,
|
|
||||||
removeAccount,
|
|
||||||
meAnon,
|
meAnon,
|
||||||
setMeAnon,
|
setMeAnon,
|
||||||
nextAccount,
|
nextAccount,
|
||||||
multiAuthErrors: errors
|
multiAuthErrors: errors
|
||||||
}),
|
}),
|
||||||
[accounts, addAccount, removeAccount, meAnon, setMeAnon, nextAccount, errors])
|
[accounts, meAnon, setMeAnon, nextAccount])
|
||||||
return <AccountContext.Provider value={value}>{children}</AccountContext.Provider>
|
return <AccountContext.Provider value={value}>{children}</AccountContext.Provider>
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user