A React Native app for the ultimate thinking partner.

fix(streaming): align tool call padding with reasoning blocks

- Add toolCallStreamingContainer style with paddingLeft: 20px
- Matches reasoning container left padding for consistent alignment
- Fixes visual inconsistency between tool calls and reasoning blocks

+6 -1
+6 -1
App.tsx
··· 2286 2286 2287 2287 {/* Show tool calls if we have any */} 2288 2288 {currentStream.toolCalls.map((toolCall) => ( 2289 - <View key={toolCall.id}> 2289 + <View key={toolCall.id} style={styles.toolCallStreamingContainer}> 2290 2290 <ToolCallItem 2291 2291 callText={toolCall.args} 2292 2292 hasResult={false} ··· 3607 3607 color: darkTheme.colors.text.secondary, 3608 3608 lineHeight: 22, 3609 3609 fontStyle: 'normal', 3610 + }, 3611 + toolCallStreamingContainer: { 3612 + paddingLeft: 20, 3613 + paddingRight: 16, 3614 + marginBottom: 12, 3610 3615 }, 3611 3616 3612 3617 // Modal styles