mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-12 00:48:50 +01:00
Fix unneeded id passed here
This commit is contained in:
parent
691aea3389
commit
d1aedcaef2
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ function AccountStatuses() {
|
||||||
try {
|
try {
|
||||||
const featuredTags = await masto.v1.accounts
|
const featuredTags = await masto.v1.accounts
|
||||||
.$select(id)
|
.$select(id)
|
||||||
.featuredTags.list(id);
|
.featuredTags.list();
|
||||||
console.log({ featuredTags });
|
console.log({ featuredTags });
|
||||||
setFeaturedTags(featuredTags);
|
setFeaturedTags(featuredTags);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in a new issue