@timardex/cluemart-shared 1.3.32 → 1.3.34

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.
@@ -2284,7 +2284,11 @@ var useUpdateTester = () => {
2284
2284
  };
2285
2285
  var useDeleteTester = () => {
2286
2286
  const [deleteTester, { loading, error }] = (0, import_client39.useMutation)(
2287
- DELETE_TESTER_MUTATION
2287
+ DELETE_TESTER_MUTATION,
2288
+ {
2289
+ awaitRefetchQueries: true,
2290
+ refetchQueries: [{ query: GET_TESTERS }]
2291
+ }
2288
2292
  );
2289
2293
  return { deleteTester, error, loading };
2290
2294
  };