Add clearer messaging around back to chat

This commit is contained in:
Jack Kingsman
2026-03-06 11:40:29 -08:00
parent cdf5c0b81e
commit 8f2d55277f
3 changed files with 35 additions and 9 deletions
+6 -1
View File
@@ -117,7 +117,12 @@ export function StatusBar({
)}
<button
onClick={onSettingsClick}
className="px-3 py-1.5 bg-secondary border border-border text-muted-foreground rounded-md text-xs cursor-pointer hover:bg-accent hover:text-foreground transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring"
className={cn(
'px-3 py-1.5 rounded-md text-xs cursor-pointer transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring',
settingsMode
? 'bg-status-connected/15 border border-status-connected/30 text-status-connected hover:bg-status-connected/25'
: 'bg-secondary border border-border text-muted-foreground hover:bg-accent hover:text-foreground'
)}
>
{settingsMode ? 'Back to Chat' : 'Settings'}
</button>