feat: Add accept/reject buttons on follow request notifications

This commit is contained in:
Jesse Wierzbinski 2024-06-11 14:03:30 -10:00
parent 67467b2dfd
commit 87c8b7ab92
No known key found for this signature in database
3 changed files with 36 additions and 2 deletions

View file

@ -18,7 +18,7 @@ export const useRelationship = (
toValue(client)
?.getRelationship(toValue(accountId) ?? "")
.then((res) => {
relationship.value = res.data;
relationship.value = res.data as Relationship;
});
});