File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
src/components/ReviewResult Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { useEffect } from "react";
22import confetti from "canvas-confetti" ;
33import type { Options as ConfettiOptions } from "canvas-confetti" ;
44
5- import Toast from ".. /ui/Toast/Toast" ;
5+ import Toast from "@/components /ui/Toast/Toast" ;
66import HomeNavigateConfirmModal from "@/components/HomeNavigateConfirmModal/HomeNavigateConfirmModal" ;
77import styles from "@/components/ReviewResult/ReviewResult.module.scss" ;
88import Button from "@/components/ui/Button/Button" ;
@@ -14,13 +14,12 @@ import useToast from "@/hooks/common/useToast";
1414
1515const ReviewResult = ( ) => {
1616 const { isOpen, handleClose, handleOpen } = useOverlay ( ) ;
17- const { isToast, showToast } = useToast ( 1000 ) ;
17+ const { isToast, showToast } = useToast ( 1000 ) ;
1818
1919 const reviewText = `오늘 처음으로 청담커피 앤 토스트에서 주문했어요.. 매장도 깔끔하고 직원들도 친절해요!
2020 음료랑 토스트 세트 시켰는데 가성비가 좋네요… 맛도 좋고 양도 많아요!! 다음에도 또 시켜먹을 거예요.` ;
2121
2222 const handleCopy = ( ) => {
23- navigator . clipboard . writeText ( reviewText ) ;
2423 showToast ( ) ;
2524 } ;
2625
You can’t perform that action at this time.
0 commit comments