diff --git a/src/components/pages/group-list/index.tsx b/src/components/pages/group-list/index.tsx index 85d5e860..a6240333 100644 --- a/src/components/pages/group-list/index.tsx +++ b/src/components/pages/group-list/index.tsx @@ -19,9 +19,10 @@ interface GroupListProps { initialKeyword?: string; } -const SearchResultCount = ({ count }: { count: number }) => ( +const SearchResultCount = ({ keyword, count }: { keyword: string; count: number }) => (
- 검색결과 + {keyword} + 검색결과 {count}
@@ -67,7 +68,7 @@ export default function GroupList({ initialData, initialKeyword }: GroupListProp )} - {hasKeyword && } + {hasKeyword && keyword && } {!hasKeyword && hasNoItems && (