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