- {/* 헤더 */}
-
-
사진첩
-
- {isMine && (
-
- )}
- {statusContent && (
-
{statusContent}
- )}
-
+
+ {/* 헤더 */}
+
+
사진첩
+
+ {isMine && (
+
+ )}
+ {statusContent && (
+
{statusContent}
+ )}
-
- {hasImages ? (
- /* 이미지 그리드 영역 */
-
- {images.map((image) => (
-
- ))}
-
- ) : null}
-
+
+ {hasImages ? (
+ /* 이미지 그리드 영역 */
+
+ {images.map((image) => (
+
+ ))}
+
+ ) : null}
+
);
}
diff --git a/src/features/minihome/guestbook/GuestBook.tsx b/src/features/minihome/guestbook/GuestBook.tsx
index a49cf2a..2c1fb64 100644
--- a/src/features/minihome/guestbook/GuestBook.tsx
+++ b/src/features/minihome/guestbook/GuestBook.tsx
@@ -1,5 +1,6 @@
import { useEffect, useState } from "react";
+import BevelScrollContainer from "@/components/Container/BevelScrollContainer";
import { useAuthStore } from "@/stores/useAuthStore";
import {
@@ -126,34 +127,36 @@ export default function GuestBook({ ownerId }: { ownerId: string | undefined })
{!isMine &&
}
전체 방명록 {data.length}
-
-
- {data.map((entry) => (
- -
- handleEntryDelete(entry.id)}
- >
- {entry.comments.length > 0 ? (
-
-
- ))}
-
+
+
+
+ {data.map((entry) => (
+ -
+ handleEntryDelete(entry.id)}
+ >
+ {entry.comments.length > 0 ? (
+
+
+ ))}
+
+
diff --git a/src/features/minihome/post/list/PostList.tsx b/src/features/minihome/post/list/PostList.tsx
index 6c2959c..dba8418 100644
--- a/src/features/minihome/post/list/PostList.tsx
+++ b/src/features/minihome/post/list/PostList.tsx
@@ -1,5 +1,6 @@
import { useEffect, useState } from "react";
+import BevelScrollContainer from "@/components/Container/BevelScrollContainer";
import { useAuthUser } from "@/hooks/useAuthUser";
import type { PostWithCounts } from "@/types/post.types";
import supabase from "@/utils/supabase";
@@ -69,8 +70,8 @@ export default function PostList({ onPostClick, ownerId }: PostListProps) {
}
return (
-
-
+
+
{posts.length > 0 ? (
posts.map((post) => (
작성된 게시글이 없습니다.
)}
-
+
);
}