Skip to content

Commit

Permalink
fix: accountInfo 쿠키 등록
Browse files Browse the repository at this point in the history
  • Loading branch information
LimSumi committed Nov 5, 2023
1 parent 95fc176 commit 9e4d6a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/login/LoginInputForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const LoginInputForm = () => {
(Number(tokenExpirationDate) - Number(currentDate)) / 1000,
);

setCookie('userAccountInfo', `${role} ${id}`, {
setCookie('accountInfo', `${role} ${id}`, {
expires: tokenExpirationDate,
maxAge: timeDifferenceseconds,
});
Expand Down

0 comments on commit 9e4d6a9

Please sign in to comment.