Skip to content

Commit

Permalink
fix(AccountContributors): 404 message
Browse files Browse the repository at this point in the history
  • Loading branch information
Betree committed Dec 13, 2024
1 parent 131240c commit d9b66b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/controllers/account-contributors.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ const accountContributors = async (req, res) => {
}

if (result.account.members.totalCount === 0) {
res.status(404).send('No transaction found.');
res.status(404).send('No members found.');
break;
}

Expand Down

0 comments on commit d9b66b3

Please sign in to comment.