Skip to content

Commit

Permalink
Merge pull request storybookjs#23139 from storybookjs/norbert/fix-23090
Browse files Browse the repository at this point in the history
Server: Do not wrap data on channel in an array
  • Loading branch information
ndelangen authored Jun 19, 2023
2 parents b2fb6c9 + 851d528 commit 63e9c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/builders/builder-webpack5/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ const starter: StarterFunction = async function* starterGeneratorFn({
}
}

channel.emit(PREVIEW_BUILDER_PROGRESS, [progress]);
channel.emit(PREVIEW_BUILDER_PROGRESS, progress);
},
modulesCount,
}).apply(compiler);
Expand Down

0 comments on commit 63e9c52

Please sign in to comment.