fix paths

This commit is contained in:
Alec Armbruster 2023-07-04 11:39:57 -04:00
parent bd4b556d81
commit b1caef3b8f
No known key found for this signature in database
GPG key ID: 52BC7C84E960FD1B
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import * as cookie from "cookie";
import { authCookieName } from "shared/config";
import { authCookieName } from "../../config";
export default function clearAuthCookie() {
document.cookie = cookie.serialize(authCookieName, "", {

View file

@ -1,6 +1,6 @@
import { isHttps } from "@utils/env";
import * as cookie from "cookie";
import { authCookieName } from "shared/config";
import { authCookieName } from "../../config";
export default function setAuthCookie(jwt: string) {
const expires = new Date();