diff --git a/src/api/member.ts b/src/api/member.ts
index e7c702de..dd73f20f 100644
--- a/src/api/member.ts
+++ b/src/api/member.ts
@@ -53,7 +53,7 @@ export const getMemberTrips = async (page = 0, size = 10) => {
}
};
-// 나의 관심 여행지 조회
+// 나의 관심 목록 조회
export const getMemberTours = async (page?: number, size?: number) => {
try {
const res = await authClient.get(`member/tours?&page=${page}&size=${size}`);
@@ -97,7 +97,7 @@ export const getMemberReviews = async (page?: number, size?: number) => {
}
};
-// 나의 관심 여행지 삭제
+// 나의 관심 목록 삭제
// export const deleteMemberTours = async (tourItemId: number) => {
// const res = await authClient.delete(`member/tours/${tourItemId}`);
// return res;
diff --git a/src/api/tours.ts b/src/api/tours.ts
index 6933f0a8..1311c8f2 100644
--- a/src/api/tours.ts
+++ b/src/api/tours.ts
@@ -33,7 +33,7 @@ export const getDetailTours = async (tourItemId: number) => {
}
};
-// 관심 여행지 등록
+// 관심 목록 등록
export const postLikedTours = async (options: { id: number }) => {
try {
const { id } = options;
@@ -48,7 +48,7 @@ export const postLikedTours = async (options: { id: number }) => {
}
};
-// 관심 여행지 삭제
+// 관심 목록 삭제
export const deleteLikedTours = async (options: { id: number }) => {
try {
const { id } = options;
diff --git a/src/api/trips.ts b/src/api/trips.ts
index 3cb10b13..37d91911 100644
--- a/src/api/trips.ts
+++ b/src/api/trips.ts
@@ -40,13 +40,13 @@ export const getTripsLike = async (
return res;
};
-// 우리의 관심 여행지 등록
+// 우리의 관심 목록 등록
export const postTripsLike = async (tripId: number, tourItemIds: number[]) => {
const res = await client.post(`trips/${tripId}/tripLikedTours`, tourItemIds);
return res;
};
-// 우리의 관심 여행지 좋아요/싫어요
+// 우리의 관심 목록 좋아요/싫어요
export const postTripsLikeHate = async (
tripId: number,
tourId: number,
diff --git a/src/components/Auth/Login/KakaoLogin.tsx b/src/components/Auth/Login/KakaoLogin.tsx
index 5146b85c..dfc5dd26 100644
--- a/src/components/Auth/Login/KakaoLogin.tsx
+++ b/src/components/Auth/Login/KakaoLogin.tsx
@@ -28,10 +28,10 @@ const KakaoLogin = () => {
genderType: gender,
survey: null,
});
- if (signup) {
+ if (signup === 'true') {
// signup이 true면 이미 회원가입을 했던 유저
navigate('/');
- } else {
+ } else if (signup === 'false') {
// signup이 false면 이전에 회원가입을 하지 않았던 유저
navigate('/signup/success');
}
diff --git a/src/components/MyTrip/MyTrip.tsx b/src/components/MyTrip/MyTrip.tsx
index 3d7a7813..59422bbb 100644
--- a/src/components/MyTrip/MyTrip.tsx
+++ b/src/components/MyTrip/MyTrip.tsx
@@ -47,7 +47,7 @@ const MyTrip = () => {
/>
) : (