fix: authorization

This commit is contained in:
moolcoov
2025-03-01 20:33:17 +03:00
parent 345bd5bcf2
commit f86724ae80
2 changed files with 2 additions and 4 deletions
-2
View File
@@ -6,8 +6,6 @@ export const getToken = () => {
export const saveToken = (token: string) => {
Cookie.set("token", token, {
secure: true,
sameSite: "Strict",
expires: 30,
});
};