@timardex/cluemart-shared 1.5.546 → 1.5.547

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/dist/index.mjs CHANGED
@@ -4028,7 +4028,7 @@ var useGetEventsByRegion = (region, options) => {
4028
4028
  var useSearchEvents = (region, search, tags) => {
4029
4029
  const { loading, error, data, refetch } = useQuery2(SEARCH_EVENTS, {
4030
4030
  fetchPolicy: "network-only",
4031
- skip: !search || search.length < 3 || !region || region === "",
4031
+ skip: !region || region === "",
4032
4032
  variables: { region, search, tags }
4033
4033
  });
4034
4034
  const eventsSearch = data?.eventsSearch || [];