(unread: number)
| 226 | const MAX_UNREAD_DISPLAY = 20; |
| 227 | |
| 228 | export const getUnreadText = (unread: number): string => |
| 229 | unread > MAX_UNREAD_DISPLAY ? `${MAX_UNREAD_DISPLAY}+` : unread.toString(); |
| 230 | |
| 231 | interface ActionCopy { |
| 232 | mute: string; |
no outgoing calls
no test coverage detected