Skip to content

Commit 3ad6b75

Browse files
committed
chore: fix gpus vram
1 parent cec4fa7 commit 3ad6b75

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web-app/src/routes/settings/hardware.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,9 +375,9 @@ function Hardware() {
375375
title={t('settings:hardware.vram')}
376376
actions={
377377
<span className="text-main-view-fg/80">
378-
{formatMegaBytes(device.mem)}{' '}
378+
{formatMegaBytes(device.free)}{' '}
379379
{t('settings:hardware.freeOf')}{' '}
380-
{formatMegaBytes(device.free)}
380+
{formatMegaBytes(device.mem)}
381381
</span>
382382
}
383383
/>

0 commit comments

Comments
 (0)