1
Fork 0

Fix for login URL

This commit is contained in:
David Valdez 2023-04-30 01:37:36 +00:00
parent 31f1810e5e
commit 170f1ac59c
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export const INITIAL_SETUP_QUERY = gql`
export function login(token: string) {
saveTokenCookie(token)
window.location.href = '/'
window.location.href = `${import.meta.env.BASE_URL}`
}
export const Container = styled.div.attrs({ className: 'mt-20' })``