Skip to content

Commit

Permalink
Core: Fix __namedExportsOrder warning from preview.js
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Jan 14, 2022
1 parent 6e0dee4 commit 8d826f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Object.keys(config).forEach((key) => {
v[key] = value;
return addParameters(v, false);
}
case '__namedExportsOrder':
case 'decorateStory':
case 'renderToDOM': {
return null; // This key is not handled directly in v6 mode.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Object.keys(config).forEach((key) => {
v[key] = value;
return addParameters(v, false);
}
case '__namedExportsOrder':
case 'decorateStory':
case 'renderToDOM': {
return null; // This key is not handled directly in v6 mode.
Expand Down

0 comments on commit 8d826f9

Please sign in to comment.