Skip to content

Commit 7b537cf

Browse files
committed
Merge branch 'main' of https://github.com/Nexters/DDD-web
2 parents ff681d1 + 63c2a9c commit 7b537cf

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/chat/components/ChatAvatar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
import NewChatBotProfileImage from "@/shared/assets/images/new-chatbot-profile.png";
1+
22
import Image from "next/image";
33
import { css } from "styled-components";
4+
import NewChatBotProfileImage from "@/shared/assets/images/new-chat-profile.png";
45
export default function ChatAvatar() {
56
return (
67
<Image
6.84 KB
Loading

src/tarot/apis/createTarotReview.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import apiClient from "@/shared/lib/axios/apiClient";
22

33
enum ReviewScore {
4-
BAD = "0",
4+
BAD = "2",
55
NOT_BAD = "1",
6-
GOOD = "2",
6+
GOOD = "0",
77
}
88
export const createTarotReview = async (grade: ReviewScore, resultId: number) => {
99
return apiClient

src/tarot/components/TarotReadingReviewModal.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ interface Props {
1414
}
1515

1616
enum ReviewScore {
17-
BAD = "0",
17+
BAD = "2",
1818
NOT_BAD = "1",
19-
GOOD = "2",
19+
GOOD = "0",
2020
}
2121

2222
type CreateReviewRequestType = {
@@ -109,7 +109,7 @@ export default function TarotReadingReviewModal({ isOpen, onOpenChange }: Props)
109109
color: ${({ theme }) => theme.colors.grey60};
110110
`}
111111
>
112-
별로
112+
별로..
113113
</p>
114114
</RadioGroup.Item>
115115
<RadioGroup.Item value={ReviewScore.NOT_BAD}>
@@ -120,7 +120,7 @@ export default function TarotReadingReviewModal({ isOpen, onOpenChange }: Props)
120120
color: ${({ theme }) => theme.colors.grey60};
121121
`}
122122
>
123-
완전 만족
123+
적당해
124124
</p>
125125
</RadioGroup.Item>{" "}
126126
<RadioGroup.Item value={ReviewScore.GOOD}>

0 commit comments

Comments
 (0)