Skip to content

Commit

Permalink
correct split-grid indexes
Browse files Browse the repository at this point in the history
  • Loading branch information
nathancahill committed Mar 28, 2021
1 parent fd6953e commit ecaa9fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/split-grid/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ class Grid {
}

this.options.columnGutters.forEach(gutterOptions => {
this.columnGutters[options.track] = createGutter(
this.columnGutters[gutterOptions.track] = createGutter(
'column',
this.options,
)(gutterOptions)
})

this.options.rowGutters.forEach(gutterOptions => {
this.rowGutters[options.track] = createGutter(
this.rowGutters[gutterOptions.track] = createGutter(
'row',
this.options,
)(gutterOptions)
Expand Down

0 comments on commit ecaa9fb

Please sign in to comment.