Skip to content

Commit da9f00b

Browse files
committed
refact: 테스트 코드 제거
1 parent 6f74cb3 commit da9f00b

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/shared/apis/getGuestIdCookie.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
export const getGuestIdCookie = async () => {
2-
console.log(process.env.NEXT_PUBLIC_BASE_URL);
32
const userKey: { token: string | undefined } = await fetch(
43
`${process.env.NEXT_PUBLIC_BASE_URL}/api/cookies`
54
).then((res) => res.json());

src/tarot/components/NextRecommendQuestion.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import styled from "styled-components";
22
// import { useTarotQuestionRecommends } from "../hooks/useTarotQuestionRecommends";
3-
import { useTarotFollowQuestion } from "../hooks/useTarotFollowQuestion";
43
import { useParams } from "next/navigation";
4+
import { useTarotFollowQuestion } from "../hooks/useTarotFollowQuestion";
55
interface NextRecommendQuestionProps {
66
handleRecommendQuestionChat: (question: string) => void;
77
}
@@ -11,7 +11,6 @@ const NextRecommendQuestion = ({ handleRecommendQuestionChat }: NextRecommendQue
1111

1212
const { data: NextQuestion } = useTarotFollowQuestion(Number(chatId), Number(resultId));
1313

14-
console.log(NextQuestion);
1514
return (
1615
<RecommendBox>
1716
<div>

0 commit comments

Comments
 (0)