Skip to content

Commit abf311e

Browse files
committed
fix: cookie name prefix
1 parent db22542 commit abf311e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/AuthService.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { parseCookies } from 'nookies'
33
import { User } from '../../graphql'
44
import { isBrowser } from '../utils/environment'
55

6-
export const TOKEN_COOKIE_NAME = 'fw-token'
7-
export const USER_COOKIE_NAME = 'fw-user'
6+
export const TOKEN_COOKIE_NAME = 'cj-token'
7+
export const USER_COOKIE_NAME = 'cj-user'
88

99
export class AuthService {
1010
readonly endpoint: string

0 commit comments

Comments
 (0)