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

Function _temp4

src/components/ContextVisualization.tsx:471–479  ·  view source on GitHub ↗
(square, colIndex)

Source from the content-addressed store, hash-verified

469 return <Box key={rowIndex} flexDirection="row" marginLeft={-1}>{row.map(_temp4)}</Box>;
470}
471function _temp4(square, colIndex) {
472 if (square.categoryName === "Free space") {
473 return <Text key={colIndex} dimColor={true}>{"\u26F6 "}</Text>;
474 }
475 if (square.categoryName === RESERVED_CATEGORY_NAME) {
476 return <Text key={colIndex} color={square.color}>{"\u26DD "}</Text>;
477 }
478 return <Text key={colIndex} color={square.color}>{square.squareFullness >= 0.7 ? "\u26C1 " : "\u26C0 "}</Text>;
479}
480function _temp3(cat_1) {
481 return cat_1.name === RESERVED_CATEGORY_NAME;
482}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected