Skip to content

Commit

Permalink
Fix spelling mistake in eCommerce tutorial index (#19494)
Browse files Browse the repository at this point in the history
  • Loading branch information
barrymcgee authored and GatsbyJS Bot committed Nov 14, 2019
1 parent 5795d60 commit 9d37452
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial/ecommerce-tutorial/index.md
Expand Up @@ -455,7 +455,7 @@ import React, { Component } from 'react'
import { graphql, StaticQuery } from 'gatsby'
import SkuCard from './SkuCard' // highlight-line

const conatinerStyles = {
const containerStyles = {
display: 'flex',
flexDirection: 'row',
flexWrap: 'wrap',
Expand Down Expand Up @@ -498,7 +498,7 @@ class Skus extends Component {
}
`}
render={({ skus }) => (
<div style={conatinerStyles}>
<div style={containerStyles}>
{skus.edges.map(({ node: sku }) => (
<SkuCard key={sku.id} sku={sku} stripe={this.state.stripe} /> {/* highlight-line */}
))}
Expand Down

0 comments on commit 9d37452

Please sign in to comment.