Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
abrzezinski94 committed Oct 4, 2023
1 parent e31064d commit 7ead1fb
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pages/dao/[symbol]/proposal/[pk]/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,9 @@ const Proposal = () => {
</ReactMarkdown>
</div>
)}
<ProposalWarnings proposal={proposal.account} />
{proposal.account && (
<ProposalWarnings proposal={proposal.account} />
)}
<TransactionPanel />
{isTwoCol && allowDiscussion && <DiscussionPanel />}
</>
Expand Down

0 comments on commit 7ead1fb

Please sign in to comment.