diff options
author | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-27 17:53:31 +0300 |
---|---|---|
committer | ilyayudovin <ilyayudovin123@gmail.com> | 2020-06-27 17:53:31 +0300 |
commit | 490904d9299df636134b82d5507e629f570a1791 (patch) | |
tree | bb321b38e6f14c7d020de65ab1bf0c03452ef893 /src/components/Feed/Feed.tsx | |
parent | e199f28a384dfd6fdf71e6ddaa21799096099cf9 (diff) | |
download | which-ui-490904d9299df636134b82d5507e629f570a1791.tar.gz |
change avata image right after submit
Diffstat (limited to 'src/components/Feed/Feed.tsx')
-rw-r--r-- | src/components/Feed/Feed.tsx | 2 |
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} />)} |