Skip to content

Commit 62de101

Browse files
authored
Chore(client): 커뮤니티 검색 placeholder 삭제 (team-bofit#468)
* refactor: placeholder 삭제 * chore: 불필요한 import문 삭제
1 parent 2212a7b commit 62de101

File tree

1 file changed

+1
-7
lines changed
  • apps/client/src/widgets/community/components/search

1 file changed

+1
-7
lines changed

apps/client/src/widgets/community/components/search/search.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,12 @@ import { useNavigate } from 'react-router';
55
import { Chip, Input } from '@bds/ui';
66
import { Icon } from '@bds/ui/icons';
77

8-
import { EMPTY_POST } from '@widgets/community/constant/empty-content';
98
import { LocalStorage } from '@widgets/community/utils/local-storage';
109

1110
import { COMMUNITY_QUERY_OPTIONS } from '@shared/api/domain/community/queries';
1211
import { useIntersectionObserver } from '@shared/hooks/use-intersection-observer';
1312
import { routePath } from '@shared/router/path';
1413

15-
import EmptyPlaceholder from '../empty-placeholder/empty-placeholder';
1614
import FeedListItem from '../feed-list-item/feed-list-item';
1715

1816
import * as styles from './search.css';
@@ -126,11 +124,7 @@ const Search = () => {
126124
/>
127125
))
128126
) : (
129-
<div className={styles.placeholder}>
130-
<div className={styles.emptyPlaceholder}>
131-
<EmptyPlaceholder content={EMPTY_POST} />
132-
</div>
133-
</div>
127+
<></>
134128
)}
135129
<div ref={feedObserverRef} className={styles.virtualRef} />
136130
</section>

0 commit comments

Comments
 (0)