mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 03:28:21 +00:00
Fix proposal modal (#117)
This commit is contained in:
parent
f666e5b661
commit
28129ffdf1
@ -62,7 +62,7 @@ export function ProposeModal({
|
||||
<ColumnFlexDiv>
|
||||
<PublicKeyInput publicKey={publicKey} setPublicKey={setPublicKey} />
|
||||
<ProposingData>
|
||||
{communityFound ? <CardCommunity community={communityFound} /> : loading && <CommunitySkeleton />}
|
||||
{communityFound ? <CardCommunity community={communityFound} /> : loading && publicKey && <CommunitySkeleton />}
|
||||
{communityFound && !communityFound.validForAddition && (
|
||||
<WarningWrap>
|
||||
<Warning
|
||||
@ -71,7 +71,7 @@ export function ProposeModal({
|
||||
/>
|
||||
</WarningWrap>
|
||||
)}
|
||||
{((communityFound && communityFound.validForAddition) || loading) && (
|
||||
{((communityFound && communityFound.validForAddition) || loading) && publicKey && (
|
||||
<VoteProposeWrap>
|
||||
<VotePropose
|
||||
availableAmount={availableAmount}
|
||||
|
Loading…
x
Reference in New Issue
Block a user