post-more-fixes-fix

This commit is contained in:
Henry Jameson 2026-07-08 19:38:48 +03:00
commit 6dead855d5

View file

@ -26,10 +26,10 @@ const chatNew = {
}
},
async created() {
const { chatList } = await chats({
const { data } = await chats({
credentials: useOAuthStore().token,
})
chatList.forEach((chat) => this.suggestions.push(chat.account))
data.forEach((chat) => this.suggestions.push(chat.account))
},
computed: {
users() {