Skip to content

Commit

Permalink
Fix Async Generator resolvers resolution (#9992)
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad authored Sep 18, 2018
1 parent 38e1ae0 commit 05de440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/data/src/plugins/controls/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export default function( registry ) {

async __experimentalFulfill( reducerKey, selectorName, ...args ) {
if ( ! registry.namespaces[ reducerKey ].supportControls ) {
registry.__experimentalFulfill( reducerKey, selectorName, ...args );
await registry.__experimentalFulfill( reducerKey, selectorName, ...args );
return;
}

Expand Down

0 comments on commit 05de440

Please sign in to comment.