aboutsummaryrefslogtreecommitdiff
path: root/src/components/Feed/Feed.tsx
diff options
context:
space:
mode:
authorilyayudovin <46264063+ilyayudovin@users.noreply.github.com>2020-06-27 19:18:33 +0300
committerGitHub <noreply@github.com>2020-06-27 19:18:33 +0300
commit5057fe763d423be607336d6b839909843c5a2567 (patch)
tree83356dd3ee0871e5226aa9ed67d9905f35e323f2 /src/components/Feed/Feed.tsx
parent9c4d6400ae83a32853d4437236f42796f08dbde7 (diff)
parent5b08023e0aa0e626264673ebb86dc82299a3b54b (diff)
downloadwhich-ui-5057fe763d423be607336d6b839909843c5a2567.tar.gz
Merge pull request #46 from which-ecosystem/profile
profile
Diffstat (limited to 'src/components/Feed/Feed.tsx')
-rw-r--r--src/components/Feed/Feed.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/components/Feed/Feed.tsx b/src/components/Feed/Feed.tsx
index d81da99..0c4d84f 100644
--- a/src/components/Feed/Feed.tsx
+++ b/src/components/Feed/Feed.tsx
@@ -18,7 +18,6 @@ const useStyles = makeStyles(theme => ({
const Feed: React.FC<PropTypes> = ({ polls, navigate }) => {
const classes = useStyles();
-
return (
<div className={classes.root}>
{polls.map(poll => <PollCard initialPoll={poll} key={poll._id} navigate={navigate} />)}