chore: typo

This commit is contained in:
Louis 2025-02-18 18:02:22 +07:00
parent dc06a07c71
commit 133af33014
No known key found for this signature in database
GPG Key ID: 44FA9F4D33C37DE2
2 changed files with 5 additions and 5 deletions

View File

@ -134,8 +134,8 @@ const SystemMonitor = () => {
<div className="flex items-center justify-between gap-2">
<h6 className="font-bold">Memory</h6>
<span>
{toGibibytes(usedRam, { hideUnit: true })}GB /{' '}
{toGibibytes(totalRam, { hideUnit: true })}GB
{toGigabytes(usedRam, { hideUnit: true })}GB /{' '}
{toGigabytes(totalRam, { hideUnit: true })}GB
</span>
</div>
<div className="flex items-center gap-x-4">

View File

@ -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 = () => {
<div className="flex flex-col items-end gap-2">
<div className="flex w-full justify-end gap-2 text-xs text-[hsla(var(--text-secondary))]">
<span>
{toGibibytes(usedRam, { hideUnit: true })}GB /{' '}
{toGibibytes(totalRam, { hideUnit: true })}GB
{toGigabytes(usedRam, { hideUnit: true })}GB /{' '}
{toGigabytes(totalRam, { hideUnit: true })}GB
</span>
{hardware?.ram.type && (
<>