A React Native app for the ultimate thinking partner.

fix(ui): show only function name when tool call is collapsed

When a tool call is collapsed in embedded mode (shown in MessageGroupBubble),
now displays just 'memory()' instead of the full pretty-printed arguments.
Expands to show full arguments when clicked.

+1 -1
+1 -1
src/components/ToolCallItem.tsx
··· 213 213 style={styles.embeddedChevron} 214 214 /> 215 215 <Text style={[styles.callText, { color: theme.colors.text.primary }]} numberOfLines={expanded ? 0 : 1}> 216 - {prettyCallText} 216 + {expanded ? prettyCallText : `${toolName}()`} 217 217 </Text> 218 218 </TouchableOpacity> 219 219 )}