Skip to content

Commit 9d37452

Browse files
barrymcgeeGatsbyJS Bot
authored and
GatsbyJS Bot
committed
Fix spelling mistake in eCommerce tutorial index (#19494)
1 parent 5795d60 commit 9d37452

File tree

1 file changed

+2
-2
lines changed
  • docs/tutorial/ecommerce-tutorial

1 file changed

+2
-2
lines changed

docs/tutorial/ecommerce-tutorial/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ import React, { Component } from 'react'
455455
import { graphql, StaticQuery } from 'gatsby'
456456
import SkuCard from './SkuCard' // highlight-line
457457

458-
const conatinerStyles = {
458+
const containerStyles = {
459459
display: 'flex',
460460
flexDirection: 'row',
461461
flexWrap: 'wrap',
@@ -498,7 +498,7 @@ class Skus extends Component {
498498
}
499499
`}
500500
render={({ skus }) => (
501-
<div style={conatinerStyles}>
501+
<div style={containerStyles}>
502502
{skus.edges.map(({ node: sku }) => (
503503
<SkuCard key={sku.id} sku={sku} stripe={this.state.stripe} /> {/* highlight-line */}
504504
))}

0 commit comments

Comments
 (0)