We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5643180 commit 1865d60Copy full SHA for 1865d60
packages/frontend-main/src/components/posts/PostsList.vue
@@ -2,7 +2,7 @@
2
import type { InfiniteData, UseInfiniteQueryReturnType } from '@tanstack/vue-query';
3
import type { Post } from 'api-main/types/feed';
4
5
-import { Frown, Loader } from 'lucide-vue-next';
+import { Inbox, Loader } from 'lucide-vue-next';
6
import { computed } from 'vue';
7
8
import Button from '../ui/button/Button.vue';
@@ -27,7 +27,7 @@ const flatPosts = computed(() => data.value?.pages.flat() ?? []);
27
<Empty v-else-if="!flatPosts.length" class="mt-4">
28
<EmptyHeader>
29
<EmptyMedia variant="icon">
30
- <Frown class="size-6" />
+ <Inbox class="size-6" />
31
</EmptyMedia>
32
</EmptyHeader>
33
<EmptyTitle>
0 commit comments