From 3af38ec0b5f96b242767a8c17a53e4d00d975f25 Mon Sep 17 00:00:00 2001 From: "SK\\ssssk" Date: Tue, 24 Sep 2024 12:54:43 +0900 Subject: [PATCH 1/2] =?UTF-8?q?fix:=20FAQ=20=EB=82=B4=EC=9A=A9=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/support/SupportFAQList.tsx | 26 +++++++++++------------ 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/components/support/SupportFAQList.tsx b/src/components/support/SupportFAQList.tsx index 69c7152a..6b7092a6 100644 --- a/src/components/support/SupportFAQList.tsx +++ b/src/components/support/SupportFAQList.tsx @@ -7,20 +7,20 @@ interface FAQ { } const faqData: FAQ[] = [ - { - topic: "정보 서비스", - question: "", - answer: "", - }, - { - topic: "모임 서비스", - question: "", - answer: "", - }, + // { + // topic: "정보 서비스", + // question: "", + // answer: "", + // }, + // { + // topic: "모임 서비스", + // question: "", + // answer: "", + // }, { topic: "여행일기 서비스", - question: "", - answer: "", + question: "일기는 다른 사용자가 볼 수 있나요?", + answer: "아니요, 일기는 각각 개인에게만 제공되는 서비스이므로 다른 사용자가 볼 수 없습니다.", }, { topic: "회원", @@ -61,7 +61,7 @@ const SupportFAQList = () => { .map((faq, index) => (

{faq.question}

{faq.answer}

From b7c13c170c3050bef3ae06343a630c56f23e2d4b Mon Sep 17 00:00:00 2001 From: "SK\\ssssk" Date: Tue, 24 Sep 2024 12:55:11 +0900 Subject: [PATCH 2/2] =?UTF-8?q?chore:=201:1=EB=AC=B8=EC=9D=98=20=EC=83=81?= =?UTF-8?q?=EC=84=B8=EC=A1=B0=ED=9A=8C=EA=B0=80=20=EB=90=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EC=95=84=20=EC=9D=BC=EB=8B=A8=20=EC=A3=BC=EC=84=9D?= =?UTF-8?q?=EC=B2=98=EB=A6=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/support/SupportHeader.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/support/SupportHeader.tsx b/src/components/support/SupportHeader.tsx index 5e5f0355..373d37f8 100644 --- a/src/components/support/SupportHeader.tsx +++ b/src/components/support/SupportHeader.tsx @@ -8,7 +8,7 @@ const tabs = [ { name: "서비스소개", value: "about" }, { name: "공지사항", value: "notice" }, { name: "FAQ", value: "faq" }, - { name: "1:1 문의", value: "qna" }, + // { name: "1:1 문의", value: "qna" }, // { name: "1:1 문의", value: "contact" }, { name: "이용약관", value: "terms" }, ];