Skip to content

Commit

Permalink
Remove props references
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Oct 23, 2020
1 parent daf935d commit 0c0587a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ItemView/ItemView.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export default function ItemView({ activeItem }){

return(
<Paper classes={{root: classes.paperPadding}} square>
<ItemMetadataView item={props.activeItem} />
<ItemBodyView item={props.activeItem } />
<ItemMetadataView item={activeItem} />
<ItemBodyView item={activeItem } />
</Paper>
);
};
Expand Down

0 comments on commit 0c0587a

Please sign in to comment.