Skip to content

Commit

Permalink
fix(signal): requestableContextConsumer bind issue
Browse files Browse the repository at this point in the history
  • Loading branch information
alimd committed Feb 11, 2023
1 parent e937ebd commit 66467f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/signal/src/requestable-context-consumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const requestableContextConsumer = {
* const newProductList = await productListConsumer.untilChange();
* ```
*/
request: requestContext as
request: requestContext.bind(null, contextId) as
OmitFirstParam<typeof requestContext<TRquest>>,
} as const),
} as const;

0 comments on commit 66467f6

Please sign in to comment.