diff --git a/src/utils/helpers.js b/src/utils/helpers.js index e847c420..87cf2860 100644 --- a/src/utils/helpers.js +++ b/src/utils/helpers.js @@ -25,7 +25,7 @@ const formatBytes = (bytes, decimals = 2) => { } const isInt = (value) => { - return Number.isInteger(value); + return Number.isInteger(parseFloat(value)); } export {