Skip to content

Commit

Permalink
fix: Format
Browse files Browse the repository at this point in the history
  • Loading branch information
fzavalia committed Sep 29, 2023
1 parent 7cec2ae commit a799148
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Props } from './WorldsStorage.types'
import styles from './WorldsStorage.module.css'
import classNames from 'classnames'

const WorldsStorage = ({ maxBytes, currentBytes: currentBytes }: Props) => {
const WorldsStorage = ({ maxBytes, currentBytes }: Props) => {
const maxMbs = BigInt(maxBytes) / BigInt(1000000)
const currentMbs = BigInt(currentBytes) / BigInt(1000000)
const usedPercentage = (currentMbs * BigInt(100)) / maxMbs
Expand Down

0 comments on commit a799148

Please sign in to comment.