Skip to content

Commit

Permalink
refacter: qa 사항 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
lgrin-byte committed Feb 8, 2025
1 parent e9d73cb commit 253e871
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/assets/svg/ic-left-arrow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 5 additions & 4 deletions src/components/ReviewResult/ReviewResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const ReviewResult = () => {
const { send } = useAppBridge();

const { isOpen, handleClose, handleOpen } = useOverlay();
const { isToast } = useToast(1000);
const { isToast, showToast } = useToast(1000);

const { createReviewData } = useCreateReviewStore();

Expand Down Expand Up @@ -81,9 +81,10 @@ const ReviewResult = () => {
text="복사하기"
iconName="paste"
size="sm"
onClick={() =>
send({ type: AppBridgeMessageType.COPY, payload: { review: reviewText } })
}
onClick={() => {
send({ type: AppBridgeMessageType.COPY, payload: { review: reviewText } });
showToast();
}}
/>
</div>
</div>
Expand Down

0 comments on commit 253e871

Please sign in to comment.