Update appImage

This commit is contained in:
MacRimi
2025-11-19 17:15:32 +01:00
parent 7267111083
commit b368fde82d
3 changed files with 7 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ export function formatNetworkTraffic(
export function getNetworkUnit(): NetworkUnit {
if (typeof window === 'undefined') return 'Bytes';
const stored = localStorage.getItem('networkUnit');
const stored = localStorage.getItem('proxmenux-network-unit');
return stored === 'Bits' ? 'Bits' : 'Bytes';
}