@timardex/cluemart-shared 1.5.1 → 1.5.2

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.
@@ -3362,10 +3362,11 @@ var DAILY_CLUE_GAME_DATA_FIELDS_FRAGMENT = import_client55.gql`
3362
3362
  }
3363
3363
  lastFoundDate
3364
3364
  points
3365
- letters {
3365
+ letterInfo {
3366
3366
  collected
3367
3367
  shuffled
3368
3368
  todaysLetter
3369
+ todaysPlacement
3369
3370
  }
3370
3371
  streak
3371
3372
  }
@@ -3734,7 +3735,7 @@ var useGetGames = () => {
3734
3735
  var useGetGame = (_id) => {
3735
3736
  const { loading, error, data, refetch } = (0, import_client66.useQuery)(GET_GAME, {
3736
3737
  fetchPolicy: "network-only",
3737
- skip: !_id,
3738
+ skip: !_id || _id === "",
3738
3739
  variables: { _id }
3739
3740
  });
3740
3741
  const game = data?.game || null;