Skip to content

Commit 7a219ed

Browse files
committed
fix: package json bug
1 parent 33d49df commit 7a219ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
id: version
1313
attributes:
1414
label: What version of eigent are you using?
15-
placeholder: E.g., 0.0.62
15+
placeholder: E.g., 0.0.63
1616
validations:
1717
required: true
1818

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eigent",
3-
"version": "0.0.62",
3+
"version": "0.0.63",
44
"main": "dist-electron/main/index.js",
55
"description": "Eigent",
66
"author": "Eigent.AI",

src/store/chatStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ const chatStore = create<ChatStore>()(
553553
const taskIndex = taskRunning.findIndex((task) => task.id === process_task_id);
554554
if (taskIndex !== -1) {
555555
taskRunning![taskIndex].agent!.status = "completed";
556-
taskRunning![taskIndex]!.status = "completed";~
556+
taskRunning![taskIndex]!.status = "completed";
557557
}
558558

559559

0 commit comments

Comments
 (0)