MCPcopy Create free account
hub / github.com/codeaashu/claude-code / checkHasTeamMemOps

Function checkHasTeamMemOps

src/components/messages/teamMemCollapsed.tsx:11–13  ·  view source on GitHub ↗
(message: CollapsedReadSearchGroup)

Source from the content-addressed store, hash-verified

9 * is only loaded when feature('TEAMMEM') is true.
10 */
11export function checkHasTeamMemOps(message: CollapsedReadSearchGroup): boolean {
12 return (message.teamMemorySearchCount ?? 0) > 0 || (message.teamMemoryReadCount ?? 0) > 0 || (message.teamMemoryWriteCount ?? 0) > 0;
13}
14
15/**
16 * Renders team memory count parts for the collapsed read/search UI.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected