Skip to content

Commit

Permalink
Merge pull request #218 from Hanbang-NeungYo-Baeksook/develop
Browse files Browse the repository at this point in the history
[Fix] 🐾 ai 페이지 이름 바꾸기
  • Loading branch information
hhbb0081 authored Dec 28, 2024
2 parents ffda599 + 5dd2e86 commit 5064da5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/pages/AiQuestion/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import ArrowAi from '@/assets/icons/arrowAI.svg';
import usePostRecommendList from '@/hooks/query/customer/usePostRecommendList';
import Loading from '@/components/Chat/Loading';
import Header from '@/components/Header/Header';
import useGetCustomerDetail from '@/hooks/query/customer/useGetCustomerDetail';

const recommendedQuestions = [
'통장 비밀번호는 숫자만 사용할 수 있나요?',
Expand All @@ -18,6 +19,7 @@ const recommendedQuestions = [

export function AiQuestion() {
const { mutate: postRecommendList } = usePostRecommendList();
const { data: customer } = useGetCustomerDetail();

const navigate = useNavigate();

Expand Down Expand Up @@ -66,7 +68,7 @@ export function AiQuestion() {
/>
</div>
<div className='flex flex-col text-center text-lg font-bold'>
<span>예나님이 작성하신 문의 내용을 바탕으로</span>
<span>{customer?.name} 작성하신 문의 내용을 바탕으로</span>
<span>상담 전, AI의 맞춤답변을 제공해드려요</span>
</div>
<div className='flex w-full flex-col items-center'>
Expand Down

0 comments on commit 5064da5

Please sign in to comment.