diff --git a/src/components/notifications/App/components/UpdateFirmware/index.js b/src/components/notifications/App/components/UpdateFirmware/index.js index 726bafe0..94d2e74a 100644 --- a/src/components/notifications/App/components/UpdateFirmware/index.js +++ b/src/components/notifications/App/components/UpdateFirmware/index.js @@ -5,6 +5,9 @@ import { Notification } from 'components/Notification'; import type { Props } from '../../index'; export default (props: Props) => { + const { selectedDevice } = props.wallet; + const outdated = selectedDevice && selectedDevice.features && selectedDevice.firmware === 'outdated'; + if (!outdated) return null; return (