(a)
| 66 | const announcements = statusState?.status?.announcements || []; |
| 67 | |
| 68 | const getAnnouncementKey = (a) => `${a?.publishDate || ''}-${(a?.content || '').slice(0, 30)}`; |
| 69 | |
| 70 | const calculateUnreadCount = () => { |
| 71 | if (!announcements.length) return 0; |
no outgoing calls
no test coverage detected