Skip to content

Commit

Permalink
[fix] 액세스 토큰 글자 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
allone9425 committed Jul 3, 2024
1 parent c509851 commit 14f8f8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/src/api/token.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import axiosInstance from "./axiosInstance";

// 토큰 검증 API
export async function validateAccessToken(token: string): Promise<boolean> {
console.log("액세트 토큰이 유효한가?:", token);
console.log("액세스토큰:", token);
try {
const response = await axiosInstance.post(
"/auth/api/v2/validation",
Expand Down

0 comments on commit 14f8f8f

Please sign in to comment.