A React Native app for the ultimate thinking partner.

fix: remove LiveStatusIndicator references from App.old.tsx

Removed all LiveStatusIndicator imports and usages from the legacy
monolithic app file to fix bundling errors after component deletion.

Changes:
- Removed LiveStatusIndicator import
- Removed 5 usages of the component throughout the streaming UI
- Replaced thinking indicator with simple spacing

+1 -8
+1 -8
App.old.tsx
··· 38 38 import AnimatedStreamingText from './src/components/AnimatedStreamingText'; 39 39 import ToolCallItem from './src/components/ToolCallItem'; 40 40 import ReasoningToggle from './src/components/ReasoningToggle'; 41 - import LiveStatusIndicator from './src/components/LiveStatusIndicator'; 42 41 import MemoryBlockViewer from './src/components/MemoryBlockViewer'; 43 42 import MessageInput from './src/components/MessageInput'; 44 43 import { createMarkdownStyles } from './src/components/markdownStyles'; ··· 2286 2285 if (block.type === 'reasoning') { 2287 2286 return ( 2288 2287 <React.Fragment key={`completed-${index}`}> 2289 - <LiveStatusIndicator status="thought" isDark={colorScheme === 'dark'} /> 2290 2288 <View style={styles.reasoningStreamingContainer}> 2291 2289 <Text style={styles.reasoningStreamingText}>{block.content}</Text> 2292 2290 </View> ··· 2295 2293 } else if (block.type === 'assistant_message') { 2296 2294 return ( 2297 2295 <React.Fragment key={`completed-${index}`}> 2298 - <LiveStatusIndicator status="saying" isDark={colorScheme === 'dark'} /> 2299 2296 <View style={{ flex: 1 }}> 2300 2297 <MessageContent 2301 2298 content={block.content} ··· 2313 2310 {/* Show current reasoning being accumulated */} 2314 2311 {currentStream.reasoning && ( 2315 2312 <> 2316 - <LiveStatusIndicator status="thought" /> 2317 2313 <View style={styles.reasoningStreamingContainer}> 2318 2314 <Text style={styles.reasoningStreamingText}>{currentStream.reasoning}</Text> 2319 2315 </View> ··· 2334 2330 {/* Show current assistant message being accumulated */} 2335 2331 {currentStream.assistantMessage && ( 2336 2332 <> 2337 - <View style={currentStream.toolCalls.length > 0 ? { marginTop: 16 } : undefined}> 2338 - <LiveStatusIndicator status="saying" isDark={colorScheme === 'dark'} /> 2339 - </View> 2340 2333 <View style={{ flex: 1 }}> 2341 2334 <MessageContent 2342 2335 content={currentStream.assistantMessage} ··· 2350 2343 2351 2344 {/* Show thinking indicator if nothing else to show */} 2352 2345 {completedStreamBlocks.length === 0 && !currentStream.reasoning && !currentStream.assistantMessage && currentStream.toolCalls.length === 0 && ( 2353 - <LiveStatusIndicator status="thinking" isDark={colorScheme === 'dark'} /> 2346 + <View style={{ paddingVertical: 8 }} /> 2354 2347 )} 2355 2348 </Animated.View> 2356 2349 )}