File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const MyBookmarkPage = () => {
1111 useEffect ( ( ) => {
1212 const fetchBookmarks = async ( ) => {
1313 try {
14- const { content } = await getMyBookmarks ( { page : 1 , size : 10 } ) ; // ✅ 함수명 수정
14+ const { content } = await getMyBookmarks ( { page : 1 , size : 10 } ) ;
1515 setBookmarks ( content ) ;
1616 } catch ( err : unknown ) {
1717 console . error ( err ) ;
@@ -32,7 +32,6 @@ const MyBookmarkPage = () => {
3232 < div className = "w-full px-4" >
3333 < Header
3434 leftSection = "BACK"
35- rightSection = "KEBAB"
3635 onKebabClick = { ( ) => console . log ( '케밥버튼 클릭' ) }
3736 className = "bg-gray-900"
3837 >
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export default function MyFeedbackPage() {
3131 return (
3232 < div className = "flex h-screen flex-col text-white" >
3333 < div className = "mx-auto flex w-full max-w-md flex-grow flex-col px-4" >
34- < Header leftSection = "BACK" rightSection = "KEBAB" className = "bg-gray-900" >
34+ < Header leftSection = "BACK" className = "bg-gray-900" >
3535 의견 보내기
3636 </ Header >
3737
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export default function MyReviewPage() {
3030
3131 return (
3232 < div className = "w-full px-4" >
33- < Header leftSection = "BACK" rightSection = "KEBAB" className = "bg-gray-900" >
33+ < Header leftSection = "BACK" className = "bg-gray-900" >
3434 나의 후기
3535 </ Header >
3636
You can’t perform that action at this time.
0 commit comments