aboutsummaryrefslogtreecommitdiff
path: root/src/Feed
diff options
context:
space:
mode:
Diffstat (limited to 'src/Feed')
-rw-r--r--src/Feed/Feed.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Feed/Feed.tsx b/src/Feed/Feed.tsx
index ef82b38..e5bc9aa 100644
--- a/src/Feed/Feed.tsx
+++ b/src/Feed/Feed.tsx
@@ -20,7 +20,7 @@ const Feed: React.FC<PropTypes> = ({ polls }) => {
return (
<div className={classes.feed}>
{
- polls.map(poll => <PollCard author={poll.author} contents={poll.contents} />)
+ polls.map(poll => <PollCard poll={poll} />)
}
</div>
);