diff --git a/components/account/AccountCard.vue b/components/account/AccountCard.vue index 7fb5bac6..eae4f11e 100644 --- a/components/account/AccountCard.vue +++ b/components/account/AccountCard.vue @@ -4,6 +4,7 @@ import type { mastodon } from 'masto' const { account } = defineProps<{ account: mastodon.v1.Account hoverCard?: boolean + relationshipContext?: 'followedBy' | 'following' }>() cacheAccount(account) @@ -19,7 +20,7 @@ cacheAccount(account) :to="getAccountRoute(account)" />
- +
diff --git a/components/account/AccountFollowButton.vue b/components/account/AccountFollowButton.vue index bd073df5..6ee4bff3 100644 --- a/components/account/AccountFollowButton.vue +++ b/components/account/AccountFollowButton.vue @@ -1,9 +1,10 @@ @@ -11,6 +12,7 @@ const { paginator } = defineProps<{