Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefOfGxBxL committed Nov 3, 2024
1 parent f2342b7 commit 208cdb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/byteFormatter.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ export default function byteFormatter(bytes) {
if (bytes > GB) return `${(bytes / GB).toFixed(1)} GB`;
if (bytes > MB) return `${(bytes / MB).toFixed(1)} MB`;
return `${(bytes / KB).toFixed(1)} KB`;
};
}

0 comments on commit 208cdb6

Please sign in to comment.