(unread: number)
| 239 | const MAX_UNREAD_DISPLAY = 20; |
| 240 | |
| 241 | export const getUnreadText = (unread: number): string => |
| 242 | unread > MAX_UNREAD_DISPLAY ? `${MAX_UNREAD_DISPLAY}+` : unread.toString(); |
| 243 | |
| 244 | interface ActionCopy { |
| 245 | mute: string; |
no outgoing calls
no test coverage detected