Skip to content

Commit

Permalink
fixup! review suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
erights committed Apr 29, 2024
1 parent da898a2 commit 8fe07ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/async-flow/src/async-flow.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export const prepareAsyncFlowTools = (outerZone, outerOptions = {}) => {
*/
const asyncFlow = (zone, tag, guestFunc, options = undefined) => {
const makeAsyncFlowKit = prepareAsyncFlowKit(zone, tag, guestFunc, options);
const hostFuncName = `${guestFunc.name || 'anon'}_hostWrapper`;
const hostFuncName = `${tag}_hostFlow`;
const wrapperFunc = {
[hostFuncName](...args) {
const { flow } = makeAsyncFlowKit(args);
Expand Down

0 comments on commit 8fe07ac

Please sign in to comment.