use-tus 0.7.0 → 0.7.1

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -352,7 +352,7 @@ const App = () => (
352
352
  );
353
353
 
354
354
  const Uploader = () => {
355
- const { setUpload } = useTusStore('cacheKey', { autoAtart: true });
355
+ const { setUpload } = useTusStore('cacheKey', { autoStart: true });
356
356
 
357
357
  const handleSetUpload = useCallback((event: ChangeEvent<HTMLInputElement>) => {
358
358
  const file = event.target.files.item(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "use-tus",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "React hooks for resumable file uploads using tus-js-client",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",