@timardex/cluemart-shared 1.5.525 → 1.5.526

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.
@@ -1,5 +1,5 @@
1
1
  import "../chunk-XEIQR6NA.mjs";
2
- import "../chunk-F7HH3PVS.mjs";
2
+ import "../chunk-4TFXXGPQ.mjs";
3
3
  import "../chunk-DWO35OY4.mjs";
4
4
  import "../chunk-I7WE3EBR.mjs";
5
5
  import {
package/dist/index.cjs CHANGED
@@ -6428,8 +6428,8 @@ var useGetGames = () => {
6428
6428
  var useGetGame = (_id) => {
6429
6429
  const { loading, error, data, refetch } = (0, import_client66.useQuery)(GET_GAME, {
6430
6430
  fetchPolicy: "network-only",
6431
- skip: !_id || _id === "",
6432
- variables: { _id }
6431
+ skip: !_id,
6432
+ variables: _id ? { _id } : void 0
6433
6433
  });
6434
6434
  const game = data?.game || null;
6435
6435
  return { error, game, loading, refetch };