Fix invisible buttons on Memories empty state#6243
Conversation
White background + white text made "Add Your First Memory" and "Retry" buttons invisible. Switched to purple background with white text. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Greptile SummaryThis PR fixes a UI bug where the "Add Your First Memory" and "Retry" buttons on the Memories page were invisible in dark mode due to white text on a white background. The fix changes both buttons to use Changes:
Confidence Score: 5/5Safe to merge — focused bug fix with no logic changes, only corrects button visibility styling. The change is minimal (8 lines removed, 2 changed), directly addresses the described bug, and aligns with the established CTA style already used across the desktop app. No logic, data flow, or API contracts are affected. No new issues introduced. No files require special attention. Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[MemoriesPage loads] --> B{State?}
B -- No memories --> C[emptyStateView]
B -- Load error --> D[errorView]
B -- Searching no results --> E[noResultsView]
B -- Loading --> F[loadingView]
B -- Has memories --> G[Memory list]
C --> H[Add Your First Memory button - purple background, white text]
D --> I[Retry button - purple background, white text]
H -->|Tap| J[showingAddMemory = true]
I -->|Tap| K[viewModel.loadMemories]
Reviews (1): Last reviewed commit: "Fix invisible buttons on Memories empty ..." | Re-trigger Greptile |
## Summary - White text + white background made buttons invisible in dark mode on the Memories page - "Add Your First Memory" and "Retry" buttons were completely hidden - Fixed by using purple background with white text (matches other CTAs in the app) ## Test plan - [ ] Open Memories page with no memories — "Add Your First Memory" button should be visible (purple) - [ ] Trigger error state — "Retry" button should be visible (purple) 🤖 Generated with [Claude Code](https://claude.com/claude-code)
Summary
Test plan
🤖 Generated with Claude Code