diff --git a/web/containers/Layout/BottomPanel/SystemMonitor/index.tsx b/web/containers/Layout/BottomPanel/SystemMonitor/index.tsx index f4e37936b..d9a0b289a 100644 --- a/web/containers/Layout/BottomPanel/SystemMonitor/index.tsx +++ b/web/containers/Layout/BottomPanel/SystemMonitor/index.tsx @@ -134,8 +134,8 @@ const SystemMonitor = () => {
Memory
- {toGibibytes(usedRam, { hideUnit: true })}GB /{' '} - {toGibibytes(totalRam, { hideUnit: true })}GB + {toGigabytes(usedRam, { hideUnit: true })}GB /{' '} + {toGigabytes(totalRam, { hideUnit: true })}GB
diff --git a/web/screens/Settings/Hardware/index.tsx b/web/screens/Settings/Hardware/index.tsx index 1576e85b0..dbc4354d1 100644 --- a/web/screens/Settings/Hardware/index.tsx +++ b/web/screens/Settings/Hardware/index.tsx @@ -18,7 +18,7 @@ import { setActiveGpus, } from '@/hooks/useHardwareManagement' -import { toGibibytes } from '@/utils/converter' +import { toGigabytes } from '@/utils/converter' import { utilizedMemory } from '@/utils/memory' @@ -169,8 +169,8 @@ const Hardware = () => {
- {toGibibytes(usedRam, { hideUnit: true })}GB /{' '} - {toGibibytes(totalRam, { hideUnit: true })}GB + {toGigabytes(usedRam, { hideUnit: true })}GB /{' '} + {toGigabytes(totalRam, { hideUnit: true })}GB {hardware?.ram.type && ( <>