Skip to content

Commit

Permalink
Merge pull request #187 from bsideproject/feature/Report
Browse files Browse the repository at this point in the history
[feat] Liked Page Title 부분 수정
  • Loading branch information
KinDDoGGang authored Oct 11, 2023
2 parents 2b004e3 + f853697 commit 54cd5af
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pages/liked/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ interface MyPostingProps {
export default function Liked({ roomInfo }: MyPostingProps) {
const { openModal } = useModal();
const handleAddPosting = () => {
openModal({
props: {
title: 'Add Rooms',
size: 'full',
custom: true,
customHeader: true,
},
children: <Step1 />,
});
// openModal({
// props: {
// title: 'Add Rooms',
// size: 'full',
// custom: true,
// customHeader: true,
// },
// children: <Step1 />,
// });
};

/**
Expand Down Expand Up @@ -66,7 +66,7 @@ Liked.getLayout = function getLayout(page: React.ReactElement) {
window.history.back();
};
return (
<DefaultLayout title="My postings" handleButtonClick={handleGoBack}>
<DefaultLayout title="Liked" handleButtonClick={handleGoBack}>
{page}
</DefaultLayout>
);
Expand Down

0 comments on commit 54cd5af

Please sign in to comment.