Fix GetContentsByCreator returning the same content multiple times

This commit is contained in:
2024-08-16 17:04:46 -04:00
parent 56fc0d0556
commit 44bf1a0e12

View File

@@ -3,9 +3,9 @@
<v-infinite-scroll :items="contents" <v-infinite-scroll :items="contents"
:onLoad="fetchContents"> :onLoad="fetchContents">
<template v-for="content in contents"> <template v-for="content in contents" :key="content">
<content-card :content="content" <content-card :content="content"
class="w-full my-2" class="my-1"
></content-card> ></content-card>
</template> </template>