Compare commits

...

3 Commits

Author SHA1 Message Date
Ting-Wai To
556c54cb07 fix: bump semver check for extension release 2025-09-04 14:28:28 -07:00
Ting-Wai To
b4c7c24bf5 fix: hotfix: remove diffResult.error from FindAndReplace
Change pulled from 1c4c897c08
2025-09-03 14:42:17 -07:00
Ting-Wai To
c3f8dfa097 chore: bump package.json 2025-09-03 14:39:41 -07:00
3 changed files with 3 additions and 3 deletions

View File

@@ -20,7 +20,7 @@ jobs:
- id: check
working-directory: .
run: |
if [[ "${{ github.event.release.tag_name }}" == v1.0.*-vscode ]]; then
if [[ "${{ github.event.release.tag_name }}" == v1.2.*-vscode ]]; then
echo "should_run=true" >> $GITHUB_OUTPUT
else
echo "should_run=false" >> $GITHUB_OUTPUT

View File

@@ -2,7 +2,7 @@
"name": "continue",
"icon": "media/icon.png",
"author": "Continue Dev, Inc",
"version": "1.3.2",
"version": "1.2.2",
"repository": {
"type": "git",
"url": "https://github.com/continuedev/continue"

View File

@@ -177,7 +177,7 @@ export function FindAndReplaceDisplay({
if (diffResult?.error) {
return renderContainer(
<div className="text-error p-3 text-sm">
<strong>Error generating diff</strong> {diffResult.error}
<strong>Error generating diff</strong>
</div>,
);
}