Fix fw update icon low battery warning

This commit is contained in:
Sapphire
2025-12-11 00:30:54 -06:00
parent 17400ca337
commit 2880623cce

View File

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