removed comment

pull/89/head
Szymon Lesisz 6 years ago
parent b30c303d5a
commit 61d9713b0b

@ -11,6 +11,22 @@ export default (props: Props) => {
if (notification.type === 'backend') {
// special case: backend is down
// TODO: this is a different component with "auto resolve" button
/*
return (
<Notification
type="error"
title="Backend not connected"
actions={
[{
label: 'Try again',
callback: async () => {
await props.blockchainReconnect(network.network);
},
}]
}
/>
);
*/
return (<Notification type="error" title={notification.title} message={notification.message} />);
}
return (<Notification type={notification.type} title={notification.title} message={notification.message} />);

Loading…
Cancel
Save