Skip to content

Commit

Permalink
Merge pull request #70 from Beside-Potenday/seungbeom
Browse files Browse the repository at this point in the history
fix: 토큰 이름 수정
  • Loading branch information
seung365 authored Aug 7, 2024
2 parents 60dd8e6 + 531dff7 commit 35c8de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Provider/Auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const AuthProvider = ({ children }: { children: ReactNode }) => {
};

const handleAuthInfo = () => {
const authToken = sessionStorage.getItem('authToken');
const authToken = sessionStorage.getItem('accessToken');
if (authToken) {
const email = sessionStorage.getItem('email') || '';
const name = sessionStorage.getItem('name') || '';
Expand Down

0 comments on commit 35c8de5

Please sign in to comment.