Update agent chooser dialog copy
Intent: Replace the generic multi-agent prompt text with copy specific to the OpenClaw agent, since Pi is being removed and OpenClaw is the only remaining option.
Affected files: android/app/src/main/java/com/pika/app/ui/screens/ChatListScreen.kt
@@ -211,7 +211,7 @@ fun ChatListScreen(manager: AppManager, padding: PaddingValues) {
- text = "Choose which agent to create.",
+ text = "Create an OpenClaw agent.",
The subtitle Text composable inside the agent chooser dialog previously read "Choose which agent to create.", implying multiple options. With the Pi agent removed, the wording is updated to "Create an OpenClaw agent." so the dialog accurately describes the single action available.
// ChatListScreen.kt:214
Text(
text = "Create an OpenClaw agent.",
style = MaterialTheme.typography.bodyMedium,
color = MaterialTheme.colorScheme.onSurfaceVariant,
)