Skip to content

Commit

Permalink
fix: statistics managed did count (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat authored Oct 16, 2023
1 parent 604d4db commit 57aebab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const Statistics: React.FC = () => {
() => agent?.dataStoreORMGetIdentifiersCount(),
)

const { data: managedIdentifiersCount, isLoading: loading3 } = useQuery(['identifiers', { agentId: agent?.context.id }], () =>
const { data: managedIdentifiersCount, isLoading: loading3 } = useQuery(['identifiersCount', { agentId: agent?.context.id }], () =>
agent?.didManagerFind().then((identifiers) => identifiers.length),
)

Expand Down

0 comments on commit 57aebab

Please sign in to comment.