Skip to content

Commit a16ab82

Browse files
committed
케밥버튼 제거
1 parent f8d1577 commit a16ab82

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

src/pages/my/MyBookmark.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff 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
>

src/pages/my/MyFeedback.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/pages/my/MyReview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)