Skip to content

Commit

Permalink
Resolved a bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
palakrathi committed Dec 31, 2020
1 parent 24bdd6c commit 6c6fe01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const isFileTypeSupported = (extension) => [
'.pdf',
'.sketch',
'.csv'
].includes('.' + extension.toLowercase());
].includes('.' + extension.toLowerCase());

export const getChunkSizeArray = (fileSize, chunkSize) => {
const chunkNumber = 6;
Expand Down

0 comments on commit 6c6fe01

Please sign in to comment.