Skip to content

Commit

Permalink
fix: cast to int
Browse files Browse the repository at this point in the history
  • Loading branch information
clostao committed Nov 17, 2024
1 parent 8ca6cef commit 448a995
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/Files/UploadingObjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const UploadingObject = ({
<div>
<p className='font-semibold'>{metadata.name}</p>
<p className='text-sm text-gray-500'>
Size: {bytes(metadata.totalSize)}
Size: {bytes(Number(metadata.totalSize))}
</p>
<p className='text-sm text-gray-500'>Fees: 0 ATC</p>
</div>
Expand Down

0 comments on commit 448a995

Please sign in to comment.