Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REV-270/리뷰 결과 페이지 백엔드 api 연동 #75

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/pages/ReviewResultPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ ChartJS.register(
SubTitle,
)

//리뷰 결과 페이지
const ReviewResultPage = () => {
const reviewId = parseInt(useLocation().pathname.split('/').at(-1) || '1')
const [{ data: review }, { data: results }] = useGetReceivedReview(reviewId)
Expand Down Expand Up @@ -105,7 +104,7 @@ const ReviewResultPage = () => {
),
)}
</ul>
<button className="btn mt-5 self-end rounded-md border border-gray-200 bg-main-yellow text-base dark:border-gray-200 dark:bg-gray-300 dark:text-white md:text-lg">
<button className="btn mt-5 self-end rounded-md border border-gray-200 bg-main-hover-yellow text-base dark:border-gray-200 dark:bg-gray-300 dark:text-white md:text-lg">
pdf로 저장
</button>
</div>
Expand Down
Loading