diff --git a/apps/member/src/components/main/BlogSection/BlogSection.tsx b/apps/member/src/components/main/BlogSection/BlogSection.tsx
index 4e32f809..0976ab1d 100644
--- a/apps/member/src/components/main/BlogSection/BlogSection.tsx
+++ b/apps/member/src/components/main/BlogSection/BlogSection.tsx
@@ -2,7 +2,7 @@ import { useBlog } from '@hooks/queries';
import Section from '@components/common/Section/Section';
import { COMMUNITY_MESSAGE } from '@constants/message';
import PostCard from '@components/common/PostCard/PostCard';
-import { PATH } from '@constants/path';
+import { PATH_FINDER } from '@constants/path';
import EmptyBox from '@components/common/EmptyBox/EmptyBox';
const BlogSection = () => {
@@ -11,13 +11,19 @@ const BlogSection = () => {
return (
-
+
{data.items.length === 0 ? (
{COMMUNITY_MESSAGE.NO_ARTICLE}
) : (
- data.items.map((news) => (
-
- ))
+
+ {data.items.map((blog) => (
+
+ ))}
+
)}
diff --git a/apps/member/src/components/main/OrganizationNewsSection/OrganizationNewsSection.tsx b/apps/member/src/components/main/OrganizationNewsSection/OrganizationNewsSection.tsx
index 7faf1ee6..bbc2c648 100644
--- a/apps/member/src/components/main/OrganizationNewsSection/OrganizationNewsSection.tsx
+++ b/apps/member/src/components/main/OrganizationNewsSection/OrganizationNewsSection.tsx
@@ -11,17 +11,19 @@ const OrganizationNewsSection = () => {
return (
-
+
{data.items.length === 0 ? (
{COMMUNITY_MESSAGE.NO_ARTICLE}
) : (
- data.items.map((news) => (
-
- ))
+
+ {data.items.map((news) => (
+
+ ))}
+
)}
diff --git a/apps/member/src/components/panels/PanelAside/PanelAside.tsx b/apps/member/src/components/panels/PanelAside/PanelAside.tsx
index c4ef046b..5f4211ea 100644
--- a/apps/member/src/components/panels/PanelAside/PanelAside.tsx
+++ b/apps/member/src/components/panels/PanelAside/PanelAside.tsx
@@ -14,16 +14,14 @@ const PanelAside = () => {
const { data: myBooksData } = useMyBookLoan(myProfile.id);
return (
-