remove extraneous logging
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 41s
Details
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 41s
Details
This commit is contained in:
parent
046aba2c48
commit
9bac90ba55
|
@ -105,13 +105,11 @@ function Proposals() {
|
|||
|
||||
const getReferenda = (proposal) => {
|
||||
if (!proposal || !proposal.pools) return [];
|
||||
console.log('proposal.pools', proposal.pools);
|
||||
const referenda = [];
|
||||
for (let referendumIndex = 0; referendumIndex < 3; referendumIndex += 1) {
|
||||
for (let i = 0; i < 3; i += 1) {
|
||||
const pool = proposal.pools[referendumIndex][i];
|
||||
if (pool.started) {
|
||||
console.log('pool', pool);
|
||||
referenda.push(
|
||||
<div key={`${referendumIndex}.{i}`}>
|
||||
{`${referendumIndex}.${i}. `}
|
||||
|
|
Loading…
Reference in New Issue