From 9ac329ca64daccd593db6cd5201b574055e24588 Mon Sep 17 00:00:00 2001 From: muerwre Date: Wed, 7 Aug 2019 16:01:11 +0700 Subject: [PATCH] fixed typos --- src/utils/uploader.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/uploader.ts b/src/utils/uploader.ts index c3bfdd29..b9c694d0 100644 --- a/src/utils/uploader.ts +++ b/src/utils/uploader.ts @@ -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> => { const { url, error } = file;