Skip to content

Commit 1865d60

Browse files
committed
chore: replace frown icon with inbox icon
1 parent 5643180 commit 1865d60

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/frontend-main/src/components/posts/PostsList.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import type { InfiniteData, UseInfiniteQueryReturnType } from '@tanstack/vue-query';
33
import type { Post } from 'api-main/types/feed';
44
5-
import { Frown, Loader } from 'lucide-vue-next';
5+
import { Inbox, Loader } from 'lucide-vue-next';
66
import { computed } from 'vue';
77
88
import Button from '../ui/button/Button.vue';
@@ -27,7 +27,7 @@ const flatPosts = computed(() => data.value?.pages.flat() ?? []);
2727
<Empty v-else-if="!flatPosts.length" class="mt-4">
2828
<EmptyHeader>
2929
<EmptyMedia variant="icon">
30-
<Frown class="size-6" />
30+
<Inbox class="size-6" />
3131
</EmptyMedia>
3232
</EmptyHeader>
3333
<EmptyTitle>

0 commit comments

Comments
 (0)