Skip to content

Commit

Permalink
chore: correct error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sdlyy committed Jan 5, 2024
1 parent 501804e commit 5aa2111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/src/view/components/safe/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export function getOwnershipForTransaction(
.find((update) => update.fromTimestamp < new Date(submissionDate).valueOf())

if (!ownershipForTime) {
throw new Error('Ownership for time not found')
throw new Error('Ownership for given time range not found')
}

return ownershipForTime.owners
Expand Down

0 comments on commit 5aa2111

Please sign in to comment.