mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
b599035a12
* begin controller implentation * add NotificationController * create selectors and actions * update actions tu use forceUpdateMetamaskState * Basic notification UI * fix typo and remove console.log * lint * more css * add notifications scroll * add translations and fix some css * Fix rebase and edit colors * add flask tags * add flask tag to routes component * add missing flask tags * add tests * fix tests * store notification expiration delay in constant * address requested changes * rename to unreadNotificationsCount * add missing flask tag
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
///: BEGIN:ONLY_INCLUDE_IN(flask)
|
|
|
|
// The time after which a notification should be deleted.
|
|
export const NOTIFICATIONS_EXPIRATION_DELAY = 10000;
|
|
|
|
///: END:ONLY_INCLUDE_IN
|