fix: add missing 't' to export function pasteMode#22639
fix: add missing 't' to export function pasteMode#22639dingyang435 wants to merge 1 commit intoanomalyco:devfrom
Conversation
There was a problem hiding this comment.
Copilot wasn't able to review any files in this pull request.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
This PR doesn't fully meet our contributing guidelines and PR template. What needs to be fixed:
Please edit this PR description to address the above within 2 hours, or it will be automatically closed. If you believe this was flagged incorrectly, please let a maintainer know. |
|
Thanks for your contribution! This PR doesn't have a linked issue. All PRs must reference an existing issue. Please:
See CONTRIBUTING.md for details. |
|
This pull request has been automatically closed because it was not updated to meet our contributing guidelines within the 2-hour window. Feel free to open a new pull request that follows our guidelines. |
Summary
Fixes a typo in packages/app/src/components/prompt-input/paste.ts where �xpor function pasteMode was missing the letter 't', causing the paste functionality to not work properly.
Before
�xpor function pasteMode(text: string) {
After
�xport function pasteMode(text: string) {
This typo prevented the pasteMode function from being exported, breaking the paste feature in the prompt input component.