Skip to content

Commit

Permalink
chore: merge dev branch to main (#153)
Browse files Browse the repository at this point in the history
* feat: update copy of ai recommendation (#152)
  • Loading branch information
hee-suh authored Oct 3, 2024
1 parent 813e9c9 commit 0b5e84a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/recommendation/guide.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const lastChat: Chat = {
export const usageCapReachedChat: Chat = {
type: 'gpt-typing',
value:
'앗.. 추천 횟수를 넘었어요.\n다음 달이 되면 다시 추천받을 수 있어요.',
'앗.. 하루 추천 횟수를 넘었어요.\n내일이 되면 다시 추천받을 수 있어요.',
suggestionKeywords: ['지도 홈으로'],
}

Expand Down
8 changes: 3 additions & 5 deletions src/components/kakao-map/gpt-intro-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const GptIntroModal = ({

return (
<Modal isOpen={isOpen} onClose={onClose}>
<div className="rounded-4xl flex w-[330px] flex-col items-center gap-[30px] bg-neutral-600 p-[30px] pb-5">
<div className="flex w-[330px] flex-col items-center gap-[30px] rounded-4xl bg-neutral-600 p-[30px] pb-5">
<Typography size="h2">AI 맛집 추천받기</Typography>
<div className="gap flex items-center gap-3.5">
<ProxyImage
Expand All @@ -46,10 +46,8 @@ const GptIntroModal = ({
<Typography
size="body1"
className="text-center"
>{`AI 추천은 매달 ${data?.maxLimit}회까지 가능해요.\n추천 횟수는 매달 1일 초기화 돼요.`}</Typography>
<Typography size="h5">
이번 달 남은 횟수 {availableCount}
</Typography>
>{`AI 추천은 매일 ${data?.maxLimit}회까지 가능해요.\n추천 횟수는 매일 초기화 돼요.`}</Typography>
<Typography size="h5">오늘 남은 횟수 {availableCount}</Typography>
</div>
<Button
fullWidth
Expand Down

0 comments on commit 0b5e84a

Please sign in to comment.