diff --git a/src/components/Feed/ProposalCreator.js b/src/components/Feed/ProposalCreator.js index 2222b0f1d..398844aa3 100644 --- a/src/components/Feed/ProposalCreator.js +++ b/src/components/Feed/ProposalCreator.js @@ -1,4 +1,5 @@ import React, { useEffect, useState } from 'react' +import { Link } from 'react-router-dom' import { EthIdenticon, GU, @@ -54,23 +55,33 @@ function ProposalCreator({ proposal }) { display: flex; `} > -
- {profile?.image ? ( - - ) : ( - - )} -
+ +
+ {profile?.image ? ( + + ) : ( + + )} +
+
- - {profile?.name - ? profile.name - : shortenAddress(proposal.creator)} - + + + {profile?.name + ? profile.name + : shortenAddress(proposal.creator)} + + +
- - {compactMode ? ( - - ) : ( + + +
+
+ +
-
- -
-
-
- Community -
- - Discord - - - Github - - - Twitter - - - Telegram - - - Forum - -
-
-
- Documentation -
- - Wiki - - - Bug Bounty - - - FAQs - -
+
+ Community +
+ + Discord + + + Github + + + Twitter + + + Telegram + + + Forum + +
+
+
+ Documentation +
+ + Wiki + + + Bug Bounty + + + FAQs +
- )} +
+ )
)