UI Cut 02: strip home chrome and remove kit buttons from feeds#6
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: eff9646517
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| onPress={onPress} | ||
| style={({ pressed }) => ({ | ||
| minHeight: 42, | ||
| minWidth: 96, |
There was a problem hiding this comment.
Remove fixed min width from action buttons
The new ActionButton sets minWidth: 96, but the desktop review action lane in src/components/jobs/studio/studio-jobs-list.tsx still constrains two side-by-side buttons to width: isWideWeb ? 178 (the canReview row), which guarantees overflow (96 + 96 + gap > 178) whenever review actions are shown. On desktop web this causes the accept/reject controls to spill out of their column and can overlap neighboring content, degrading usability of the review queue.
Useful? React with 👍 / 👎.
Co-authored-by: Codex Agent <codex@local.dev>
What changed
Why
Home was spending too much of the first screenful on summary theater and the main feed actions were still tied to the kit controls you explicitly called out as problematic. This slice makes the product more action-first without trying to redesign every screen at once.
Verification