diff --git a/components/account.js b/components/account.js index e912c90b..74f59261 100644 --- a/components/account.js +++ b/components/account.js @@ -51,7 +51,7 @@ export const AccountProvider = ({ children }) => { }, []) const multiAuthSignout = useCallback(async () => { - const { status } = await fetch('/api/signout', { 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 // and the current account was simply removed from the list of available accounts including the corresponding JWT. const switchSuccess = status === 302 diff --git a/pages/api/signout.js b/pages/api/next-account.js similarity index 98% rename from pages/api/signout.js rename to pages/api/next-account.js index 6e462e55..cc9d1421 100644 --- a/pages/api/signout.js +++ b/pages/api/next-account.js @@ -1,5 +1,5 @@ import * as cookie from 'cookie' -import { datePivot } from '../../lib/time' +import { datePivot } from '@/lib/time' /** * @param {NextApiRequest} req