Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
Hemanthghs committed Jan 3, 2024
1 parent 217b977 commit 46382b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions frontend/src/app/(routes)/governance/AllProposals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,8 @@ const AllProposals = ({
)}
{(
status === 'active'
? activeProposalsLoading < chainIDs.length
: depositProposalsLoading < chainIDs.length
? activeProposalsLoading < chainIDs?.length
: depositProposalsLoading < chainIDs?.length
) ? null : (
<div className="text-center w-full">
<CircularProgress size={24} sx={{ color: 'white' }} />
Expand Down
1 change: 0 additions & 1 deletion frontend/src/app/(routes)/governance/GovPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import AllProposals from './AllProposals';
import RightOverview from './RightOverview';

const GovPage = ({ chainIDs }: { chainIDs: string[] }) => {
console.log('2222', chainIDs);
const [proposalState, setProposalState] = useState('active');
const [isOverviewOpen, setIsOverviewOpen] = useState(false);
const [currentOverviewId, setCurrentOverviewId] = useState(0);
Expand Down

0 comments on commit 46382b8

Please sign in to comment.