Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/components/Follows/FollowsContainer.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use client';

import { useRouter } from 'next/navigation';

import { FaPersonCircleXmark } from 'react-icons/fa6';
import { useGetFollowPosts } from '@/hooks/apis/Follows/useGetFollowPostsQuery';
import { useInfiniteScroll } from '@/hooks/useInfiniteScroll';
import { FollowsSkeleton } from '../Skeletons/FollowsSkeleton';
Expand Down Expand Up @@ -44,7 +44,10 @@ export const FollowsContainer = () => {
<div ref={observerRef} style={{ height: '1px' }} />
</div>
) : (
<div>게시글이 없습니다.</div>
<div className="flex-center h-screen flex-col gap-30 overflow-hidden">
<FaPersonCircleXmark className="mb-4 size-150 text-gray-400" />
<div className="text-center">팔로워 게시글이 없습니다.</div>
</div>
)}
</div>
</PageContainer>
Expand Down
Loading