Skip to content

Commit

Permalink
Adjust hasStartedResolution
Browse files Browse the repository at this point in the history
  • Loading branch information
adamziel committed Feb 11, 2022
1 parent f0e58d4 commit 5c15583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/data/src/redux-store/metadata/selectors.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function getIsResolving( state, selectorName, args ) {
* @return {boolean} Whether resolution has been triggered.
*/
export function hasStartedResolution( state, selectorName, args = [] ) {
return getResolutionState( state, selectorName, args ) !== undefined;
return getIsResolving( state, selectorName, args ) !== undefined;
}

/**
Expand Down

0 comments on commit 5c15583

Please sign in to comment.