remove spaces from fraction rendering; remove extraneous console.log
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 36s Details

This commit is contained in:
Ladd Hoffman 2024-03-30 15:56:35 -05:00
parent 4b2d2b432c
commit f8e0cbad35
1 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,7 @@ function Proposals() {
const proposalsContract = useRef();
const [showAddProposal, setShowAddProposal] = useState(false);
const [showViewProposal, setShowViewProposal] = useState(false);
const [viewPost, setViewPost] = useState(false);
const [viewPost, setViewPost] = useState({});
const [durations, setDurations] = useState([]);
const fetchProposal = useCallback(async (proposalIndex) => {
@ -47,7 +47,6 @@ function Proposals() {
},
});
console.log('proposal.pools', proposal.pools);
}, [proposalsContract, dispatchProposal]);
const fetchProposals = useCallback(async () => {