We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5795d60 commit 9d37452Copy full SHA for 9d37452
docs/tutorial/ecommerce-tutorial/index.md
@@ -455,7 +455,7 @@ import React, { Component } from 'react'
455
import { graphql, StaticQuery } from 'gatsby'
456
import SkuCard from './SkuCard' // highlight-line
457
458
-const conatinerStyles = {
+const containerStyles = {
459
display: 'flex',
460
flexDirection: 'row',
461
flexWrap: 'wrap',
@@ -498,7 +498,7 @@ class Skus extends Component {
498
}
499
`}
500
render={({ skus }) => (
501
- <div style={conatinerStyles}>
+ <div style={containerStyles}>
502
{skus.edges.map(({ node: sku }) => (
503
<SkuCard key={sku.id} sku={sku} stripe={this.state.stripe} /> {/* highlight-line */}
504
))}
0 commit comments