@gethashd/bytecave-browser 1.0.41 → 1.0.42

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.
@@ -7385,7 +7385,7 @@ function useHashdUrl(hashdUrl) {
7385
7385
  URL.revokeObjectURL(blobUrl);
7386
7386
  }
7387
7387
  };
7388
- }, [hashdUrl, retrieve]);
7388
+ }, [hashdUrl]);
7389
7389
  return { blobUrl, loading, error };
7390
7390
  }
7391
7391
 
package/dist/index.cjs CHANGED
@@ -7580,7 +7580,7 @@ function useHashdUrl(hashdUrl) {
7580
7580
  URL.revokeObjectURL(blobUrl);
7581
7581
  }
7582
7582
  };
7583
- }, [hashdUrl, retrieve]);
7583
+ }, [hashdUrl]);
7584
7584
  return { blobUrl, loading, error };
7585
7585
  }
7586
7586
 
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  useHashdImage,
14
14
  useHashdMedia,
15
15
  useHashdUrl
16
- } from "./chunk-DOBNBGXF.js";
16
+ } from "./chunk-P7BUV66R.js";
17
17
  import {
18
18
  clearHashdCache,
19
19
  createHashdUrl,
@@ -6426,7 +6426,7 @@ function useHashdUrl(hashdUrl) {
6426
6426
  URL.revokeObjectURL(blobUrl);
6427
6427
  }
6428
6428
  };
6429
- }, [hashdUrl, retrieve]);
6429
+ }, [hashdUrl]);
6430
6430
  return { blobUrl, loading, error };
6431
6431
  }
6432
6432
  // Annotate the CommonJS export names for ESM import in node:
@@ -8,7 +8,7 @@ import {
8
8
  useHashdImage,
9
9
  useHashdMedia,
10
10
  useHashdUrl
11
- } from "../chunk-DOBNBGXF.js";
11
+ } from "../chunk-P7BUV66R.js";
12
12
  import "../chunk-EEZWRIUI.js";
13
13
  export {
14
14
  HashdAudio,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gethashd/bytecave-browser",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "ByteCave browser client for WebRTC P2P connections to storage nodes",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",
@@ -62,7 +62,7 @@ export function useHashdUrl(hashdUrl: string | null | undefined): UseHashdUrlRes
62
62
  URL.revokeObjectURL(blobUrl);
63
63
  }
64
64
  };
65
- }, [hashdUrl, retrieve]);
65
+ }, [hashdUrl]); // eslint-disable-line react-hooks/exhaustive-deps
66
66
 
67
67
  return { blobUrl, loading, error };
68
68
  }