From 303ba421b8fe699ac33de6870c0fb911d0de7342 Mon Sep 17 00:00:00 2001 From: Sanjula Ganepola Date: Sat, 30 Nov 2024 20:55:59 -0500 Subject: [PATCH] Update history after all lines are handled Signed-off-by: Sanjula Ganepola --- src/act.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/act.ts b/src/act.ts index 22f8dad..4f38968 100644 --- a/src/act.ts +++ b/src/act.ts @@ -528,8 +528,8 @@ export class Act { writeEmitter.fire(`${message.trimEnd()}\r\n`); historyTreeDataProvider.refresh(); - await this.storageManager.update(StorageKey.WorkspaceHistory, this.historyManager.workspaceHistory); } + await this.storageManager.update(StorageKey.WorkspaceHistory, this.historyManager.workspaceHistory); }; let shell = env.shell;