mirror of
https://github.com/trezor/trezor-wallet
synced 2024-11-05 07:38:57 +00:00
comment out test data
This commit is contained in:
parent
077b6dc7fa
commit
de34a8fe04
@ -24,50 +24,50 @@ class NotificationsGroup extends PureComponent {
|
||||
}
|
||||
|
||||
render() {
|
||||
const { close } = this.props;
|
||||
const notifications = [
|
||||
{
|
||||
key: 1,
|
||||
title: 'this is a title of error notification',
|
||||
type: 'error',
|
||||
message: 'this is a message of error notification',
|
||||
},
|
||||
{
|
||||
key: 2,
|
||||
title: 'this is a title of warning notification',
|
||||
type: 'warning',
|
||||
message: 'this is a message of warning notification',
|
||||
},
|
||||
{
|
||||
key: 3,
|
||||
title: 'this is a title of warning notification',
|
||||
type: 'warning',
|
||||
message: 'this is a message of warning notification',
|
||||
},
|
||||
{
|
||||
key: 4,
|
||||
title: 'this is a title of warning notification sds d',
|
||||
type: 'warning',
|
||||
message: 'this is a message of warning notification',
|
||||
},
|
||||
{
|
||||
key: 5,
|
||||
title: 'this is a title of warning notification as',
|
||||
type: 'info',
|
||||
message: 'this is a message of warning notification',
|
||||
},
|
||||
{
|
||||
key: 6,
|
||||
title: 'this is a title of info notification s ',
|
||||
type: 'info',
|
||||
message: 'this is a message of info notification',
|
||||
actions:
|
||||
[{
|
||||
label: 'Update',
|
||||
callback: 'props.routerActions.gotoBridgeUpdate',
|
||||
}],
|
||||
},
|
||||
];
|
||||
const { close, notifications } = this.props;
|
||||
// const notifications = [
|
||||
// {
|
||||
// key: 1,
|
||||
// title: 'this is a title of error notification',
|
||||
// type: 'error',
|
||||
// message: 'this is a message of error notification',
|
||||
// },
|
||||
// {
|
||||
// key: 2,
|
||||
// title: 'this is a title of warning notification',
|
||||
// type: 'warning',
|
||||
// message: 'this is a message of warning notification',
|
||||
// },
|
||||
// {
|
||||
// key: 3,
|
||||
// title: 'this is a title of warning notification',
|
||||
// type: 'warning',
|
||||
// message: 'this is a message of warning notification',
|
||||
// },
|
||||
// {
|
||||
// key: 4,
|
||||
// title: 'this is a title of warning notification sds d',
|
||||
// type: 'warning',
|
||||
// message: 'this is a message of warning notification',
|
||||
// },
|
||||
// {
|
||||
// key: 5,
|
||||
// title: 'this is a title of warning notification as',
|
||||
// type: 'info',
|
||||
// message: 'this is a message of warning notification',
|
||||
// },
|
||||
// {
|
||||
// key: 6,
|
||||
// title: 'this is a title of info notification s ',
|
||||
// type: 'info',
|
||||
// message: 'this is a message of info notification',
|
||||
// actions:
|
||||
// [{
|
||||
// label: 'Update',
|
||||
// callback: 'props.routerActions.gotoBridgeUpdate',
|
||||
// }],
|
||||
// },
|
||||
// ];
|
||||
const notificationGroups = this.groupNotifications(notifications);
|
||||
const sortedNotifications = this.sortByPriority(notificationGroups);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user