aboutsummaryrefslogtreecommitdiff
path: root/src/components/Feed
diff options
context:
space:
mode:
authorilyayudovin <ilyayudovin123@gmail.com>2020-06-27 17:53:31 +0300
committerilyayudovin <ilyayudovin123@gmail.com>2020-06-27 17:53:31 +0300
commit490904d9299df636134b82d5507e629f570a1791 (patch)
treebb321b38e6f14c7d020de65ab1bf0c03452ef893 /src/components/Feed
parente199f28a384dfd6fdf71e6ddaa21799096099cf9 (diff)
downloadwhich-ui-490904d9299df636134b82d5507e629f570a1791.tar.gz
change avata image right after submit
Diffstat (limited to 'src/components/Feed')
-rw-r--r--src/components/Feed/Feed.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Feed/Feed.tsx b/src/components/Feed/Feed.tsx
index d81da99..06b5087 100644
--- a/src/components/Feed/Feed.tsx
+++ b/src/components/Feed/Feed.tsx
@@ -18,7 +18,7 @@ const useStyles = makeStyles(theme => ({
const Feed: React.FC<PropTypes> = ({ polls, navigate }) => {
const classes = useStyles();
-
+ console.log(polls);
return (
<div className={classes.root}>
{polls.map(poll => <PollCard initialPoll={poll} key={poll._id} navigate={navigate} />)}