Skip to content

Commit

Permalink
Remove unused prop to satisfy eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
spencern committed Nov 9, 2017
1 parent a968b52 commit f959388
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ import { Components, registerComponent } from "@reactioncommerce/reaction-compon
* @summary Displays the order summary for each shop
* @param {Object} props - React PropTypes
* @property {Object} shopSummary - An object representing the summary information for this Shop
* @property {boolean} isProfilePage - Checks if current page is profile page
* @property {boolean} isProfilePage - Checks if current page is profile page (unused)
* @return {Node} React node containing the summary information for each shop
*/
const ShopOrderSummary = ({ shopSummary, isProfilePage }) => {
const ShopOrderSummary = ({ shopSummary }) => {
return (
<div className="order-details-info-box-content">
<div className="order-summary-line">
Expand Down

0 comments on commit f959388

Please sign in to comment.