fix: buy stamp values display (#226)

fix: withdraw and deposit buttons style
fix: upload history text align
fix: buy stamp values display
This commit is contained in:
Bálint Ujvári
2026-03-16 13:25:36 +01:00
parent ae63615c7c
commit 3031d54272
5 changed files with 80 additions and 50 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export function getDaysLeft(expiryDate: Date): number {
return Math.max(0, Math.floor(diffMs / (1000 * 60 * 60 * 24)))
}
export const fromBytesConversion = (size: number, metric: string) => {
export const fromBytesConversion = (size: number, metric: string): number => {
switch (metric) {
case 'GB':
return size / 1000 / 1000 / 1000