-
- {filters.map((label, index) => {
- return (
-
- handleOptionRemove?.(label, index)}
- onChipClick={() => handleChipClick?.(label)}
- clicked={handlePropsClick?.(label, index)}
- />
-
- );
- })}
+
+ You have liked {totalElements} rooms
-
- There are {`${totalElements} rooms`} in total!
-
{rooms.map((room, idx) => (
handleCardClick(room.id)} isLikedRooms />
@@ -223,17 +203,8 @@ export default function Liked({ roomInfo }: MyPostingProps) {
}
Liked.getLayout = function getLayout(page: React.ReactElement) {
- const handleGoBack = () => {
- window.history.back();
- };
return (
-
+
{page}
);