diff --git a/plugins/woocommerce-admin/client/store/notes/selectors.js b/plugins/woocommerce-admin/client/store/notes/selectors.js index bfeb54e3a04..93013f9f1c8 100644 --- a/plugins/woocommerce-admin/client/store/notes/selectors.js +++ b/plugins/woocommerce-admin/client/store/notes/selectors.js @@ -20,7 +20,7 @@ import { ERROR } from 'store/constants'; * @return {Array} Notes */ function getNotes( state, query = {} ) { - return get( state, [ 'notes' ], getJsonString( query ), [] ); + return get( state, [ 'notes', getJsonString( query ) ], [] ); } export default {