/* @flow */ import * as React from 'react'; import Notification from 'components/Notification'; import type { Props } from '../../index'; // There could be only one account notification export default (props: Props) => { const { network, notification } = props.selectedAccount; if (!network || !notification) return null; const blockchain = props.blockchain.find(b => b.shortcut === network.shortcut); if (notification.type === 'backend') { // special case: backend is down // TODO: this is a different component with "auto resolve" button return ( { await props.blockchainReconnect(network.shortcut); }, }] } /> ); } return ( ); };