1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-24 09:18:09 +00:00

enable App/Offline notification

This commit is contained in:
Szymon Lesisz 2018-10-04 22:59:55 +02:00
parent 566178ee3b
commit b7ded5a138

View File

@ -6,6 +6,6 @@ import type { Props } from '../../index';
export default (props: Props) => { export default (props: Props) => {
const { online } = props.wallet; const { online } = props.wallet;
// if (online) return null; if (online) return null;
return (<Notification type="error" title="Wallet is offline" />); return (<Notification type="error" title="Wallet is offline" />);
}; };