Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
fix proposal threshold logic
Browse files Browse the repository at this point in the history
  • Loading branch information
feruzm committed Dec 5, 2023
1 parent b05af3c commit 3c289f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/pages/proposals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ProposalsPage extends BaseComponent<PageProps, State> {
(proposal) => proposal.status !== "expired" && proposal.status !== "inactive"
);
const eligible: Proposal[] = [];
for (const eligibleKey in teligible) {
for (const eKey in teligible) {
if (teligible[eKey].id != 0) {
eligible[eKey] = teligible[eKey];
} else {
Expand Down

0 comments on commit 3c289f2

Please sign in to comment.