@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.
package/dist/index.cjs
CHANGED
package/dist/index.js
CHANGED
package/dist/react/index.cjs
CHANGED
|
@@ -6426,7 +6426,7 @@ function useHashdUrl(hashdUrl) {
|
|
|
6426
6426
|
URL.revokeObjectURL(blobUrl);
|
|
6427
6427
|
}
|
|
6428
6428
|
};
|
|
6429
|
-
}, [hashdUrl
|
|
6429
|
+
}, [hashdUrl]);
|
|
6430
6430
|
return { blobUrl, loading, error };
|
|
6431
6431
|
}
|
|
6432
6432
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/react/index.js
CHANGED
package/package.json
CHANGED
package/src/react/useHashdUrl.ts
CHANGED
|
@@ -62,7 +62,7 @@ export function useHashdUrl(hashdUrl: string | null | undefined): UseHashdUrlRes
|
|
|
62
62
|
URL.revokeObjectURL(blobUrl);
|
|
63
63
|
}
|
|
64
64
|
};
|
|
65
|
-
}, [hashdUrl
|
|
65
|
+
}, [hashdUrl]); // eslint-disable-line react-hooks/exhaustive-deps
|
|
66
66
|
|
|
67
67
|
return { blobUrl, loading, error };
|
|
68
68
|
}
|