Replies: 1 comment
-
|
Indeed, that was likely due to a recent update in dependency packages. Fixed now. Thank you very much for sharing the note! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
When installing LeanCopilot, I got an error on line 36 of LeanCopilot/Frontend.lean, which caused the build to fail.
Changing the line from:
| some m => pure <| SuggestionText.string (((← m.data.toString).drop 10).takeWhile (· != '\n'))
To:
| some m => pure <| SuggestionText.string (((← m.data.toString).drop 10).takeWhile (· != '\n')).toString
Seems to resolve the issue.
Beta Was this translation helpful? Give feedback.
All reactions