Add PR video preview - #109
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: c0ff39cdd2
ℹ️ 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".
| { name: "Design", stack: "UX", color: "bg-violet-500" }, | ||
| ] as const; | ||
|
|
||
| const lifecycleStages = ["forming", "active", "shipping", "done"] as const; |
There was a problem hiding this comment.
Use the fixed lifecycle status names
When the PR video reaches the lifecycle rail, this lifecycleStages array is rendered directly as project lifecycle labels, but done is not a valid lifecycle status in this app; src/lib/types/team.ts defines the fixed set as forming | active | shipping | completed | paused. This makes the new preview teach a state name that the rest of the product/API cannot represent, and the same mismatch also appears in the hardcoded workspace rail label below, so it should use completed instead of done for lifecycle copy.
Useful? React with 👍 / 👎.
Summary
Validation
Closes #108