Fix unneeded id passed here

This commit is contained in:
Lim Chee Aun 2023-10-20 17:11:10 +08:00
parent 691aea3389
commit d1aedcaef2

View file

@ -98,7 +98,7 @@ function AccountStatuses() {
try {
const featuredTags = await masto.v1.accounts
.$select(id)
.featuredTags.list(id);
.featuredTags.list();
console.log({ featuredTags });
setFeaturedTags(featuredTags);
} catch (e) {