Skip to content

Commit

Permalink
fix: uuid error when user try to upload
Browse files Browse the repository at this point in the history
  • Loading branch information
numandev1 committed Oct 31, 2023
1 parent e598790 commit 55be212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/Uploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { NativeEventEmitter, Platform } from 'react-native';
import type { NativeEventSubscription } from 'react-native';
import { Compressor } from '../Main';
const CompressEventEmitter = new NativeEventEmitter(Compressor);
import { uuidv4 } from '.';
import { uuidv4 } from './index';
export enum UploadType {
BINARY_CONTENT = 0,
MULTIPART = 1,
Expand Down

1 comment on commit 55be212

@GunnarAK
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nicee thanks! I was attempting myself to create a PR, but this works too ofc! 👏🏻

Please sign in to comment.