1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 12:56:41 +07:00

fixed typos

This commit is contained in:
muerwre 2019-08-07 16:01:11 +07:00
parent c6e6233c34
commit 9ac329ca64

View file

@ -42,9 +42,9 @@ export const fakeUploader = ({
onProgress,
mustSucceed
}: {
file: { url?: string; error?: string };
onProgress: (current: number, total: number) => void;
mustSucceed: boolean;
file: { url?: string; error?: string };
onProgress: (current: number, total: number) => void;
mustSucceed: boolean;
}): Promise<IResultWithStatus<IFile>> => {
const { url, error } = file;