MCPcopy Create free account
hub / github.com/dailydotdev/apps / getUnreadText

Function getUnreadText

packages/shared/src/components/notifications/utils.ts:228–229  ·  view source on GitHub ↗
(unread: number)

Source from the content-addressed store, hash-verified

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

Callers 4

NotificationsBellFunction · 0.90
SidebarTabletFunction · 0.90
NotificationsFunction · 0.90
InternalAppFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected