Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Chuck McAndrew committed Feb 3, 2021
1 parent 33f39ef commit 95cdef9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/FileUploader.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function Dropzone(props) {
data.append('reportId', reportId);
data.append('attachmentType', attachmentType);
data.append('file', file);
res = await uploadFile(data);
await uploadFile(data);
} catch (error) {
setErrorMessage(`${file.name} failed to upload`);
// eslint-disable-next-line no-console
Expand Down

0 comments on commit 95cdef9

Please sign in to comment.