Skip to content

Commit

Permalink
feat: convert quorum to bigInt
Browse files Browse the repository at this point in the history
  • Loading branch information
Guboehm committed Oct 14, 2023
1 parent 26988dc commit 5d2778d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/content/applications/Tasks/settings/AdminOptions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ const AdminOptions = () => {
}
case "setQuorum": {
try {
await handleQuorum(quorum.quorum)
await handleQuorum(BigInt(quorum.quorum))
} catch (error) {
console.error('Erro ao enviar o formulário:', error);
}
Expand Down

0 comments on commit 5d2778d

Please sign in to comment.