Release candidate#797
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ 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
| @@ -1,19 +1,5 @@ | |||
| import { toString } from 'mdast-util-to-string' | |||
There was a problem hiding this comment.
[P0] Remove unused toString import
The stateHandlers refactor that deletes the eval implementation leaves toString imported at the top of the file but never used. With noUnusedLocals enabled in tsconfig.json, bun tsc now fails with “'toString' is declared but its value is never read”, preventing releases and CI runs. Drop the import to restore a clean type check.
Useful? React with 👍 / 👎.
No description provided.