Skip to content

Commit

Permalink
fix(update-warning): show only one MFW warning
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Oct 11, 2023
1 parent 177cdcd commit bcfbc90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UpdateWarning.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export const UpdateWarning = ({ reported }: { reported: Reported }) => {
</a>
</abbr>
)}
{needsMfwUpdate && !is91x && (
{needsMfwUpdate && is91x && (
<abbr
title={`Modem firmware update available, device is running ${dev.modV}, release version is ${MODEM_FIRMWARE_RELEASE_91x}`}
>
Expand Down

0 comments on commit bcfbc90

Please sign in to comment.