Skip to content

Commit

Permalink
fix(react-redux-hydrogen): merge options object with default correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
RickEyre committed Sep 29, 2018
1 parent f9ee35f commit eba2b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-redux-hydrogen/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export const extractOptions = (options = {}) => {
if (isFunction(options)) {
return { ...defaults, query: options };
}
return { ...defaults, options };
return { ...defaults, ...options };
};

0 comments on commit eba2b42

Please sign in to comment.