Don't show fw update icon when update is blocked

This commit is contained in:
Sapphire
2025-12-11 00:24:06 -06:00
parent 3276f6db7a
commit 17400ca337

View File

@@ -80,7 +80,8 @@ export function FirmwareIcon({
<div>
{showUpdate &&
showUpdate !== 'unavailable' &&
showUpdate !== 'updated' && <UpdateIcon showUpdate={'can-update'} />}
showUpdate !== 'updated' &&
showUpdate !== 'blocked' && <UpdateIcon showUpdate={'can-update'} />}
</div>
);
}