Skip to content

Commit aef101e

Browse files
committed
fix: typo
1 parent 94936ba commit aef101e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

contracts/scripts/simulations/tasks.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ task("simulate:cast-commit", "Casts a commit for a drawn juror")
268268
const tx = await disputeKitClassic.connect(wallet).castCommit(...castCommitFunctionArgs);
269269
await tx.wait();
270270

271-
console.log("juror %s casted a commit on txID: %s", wallet.address, tx?.hash);
271+
console.log("juror %s cast a commit on txID: %s", wallet.address, tx?.hash);
272272
});
273273

274274
task("simulate:cast-vote", "Casts a vote for a drawn juror")
@@ -295,7 +295,7 @@ task("simulate:cast-vote", "Casts a vote for a drawn juror")
295295
const tx = await disputeKitClassic.connect(wallet).castVote(...castVoteFunctionArgs);
296296
await tx.wait();
297297

298-
console.log("juror %s casted a vote on txID: %s", wallet.address, tx?.hash);
298+
console.log("juror %s cast a vote on txID: %s", wallet.address, tx?.hash);
299299
});
300300

301301
task("simulate:fund-appeal", "Funds an appeal on a dispute")

web/src/pages/Cases/CaseDetails/Voting/VotingHistory.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const VotingHistory: React.FC<{ arbitrable?: `0x${string}` }> = ({ arbitrable })
113113
{localRounds.at(currentTab)?.totalVoted === rounds.at(currentTab)?.nbVotes
114114
? "All jurors voted"
115115
: localRounds.at(currentTab)?.totalVoted.toString() +
116-
` vote${localRounds.at(currentTab)?.totalVoted.toString() === "1" ? "" : "s"} casted out of ` +
116+
` vote${localRounds.at(currentTab)?.totalVoted.toString() === "1" ? "" : "s"} cast out of ` +
117117
rounds.at(currentTab)?.nbVotes}
118118
</p>
119119
</StyledBox>

0 commit comments

Comments
 (0)