()
| 72 | }; |
| 73 | |
| 74 | const dismissNotification = () => { |
| 75 | if (queue.length) { |
| 76 | displayNotification(queue.shift()); |
| 77 | return; |
| 78 | } |
| 79 | setInAppNotification(null); |
| 80 | }; |
| 81 | |
| 82 | const clearNotifications = () => { |
| 83 | queue.length = 0; |
no test coverage detected