Skip to content

Commit

Permalink
fix(plugin-tab): handle params correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
bmuenzenmeyer committed Oct 15, 2019
1 parent fe7351c commit d248993
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/plugin-tab/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ function writeConfigToOutput(patternlab, pluginConfig) {
}
}

async function onPatternIterate(patternlab, pattern) {
async function onPatternIterate(params) {
const [patternlab, pattern] = params;
await tab_loader(patternlab, pattern);
}

Expand Down

0 comments on commit d248993

Please sign in to comment.