@omniumretail/shared-resources 0.2.83 → 0.2.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@omniumretail/shared-resources",
3
- "version": "0.2.83",
3
+ "version": "0.2.84",
4
4
  "private": false,
5
5
  "description": "Shared Components and services or utils to the frontend versions",
6
6
  "main": "dist/bundle.js",
@@ -14,7 +14,7 @@ interface LocationsByUserQueryProps extends UseQueryOptions<ResponseList<"UserLo
14
14
 
15
15
  export const getLocationsByUserQuery = ({ records, sortBy, sortDirection, tags, advancedTags, filter, page, ...options }: LocationsByUserQueryProps, userId: string) => {
16
16
  const pQueryValue = advancedTags && filter
17
- ? `${advancedTags} and ${filter}`
17
+ ? `${advancedTags} AND ${filter}`
18
18
  : advancedTags
19
19
  ? advancedTags
20
20
  : filter