Skip to content

Commit 4db9169

Browse files
author
Ed McConnell
committed
merge main
1 parent 7a31db9 commit 4db9169

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

app/commit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "commit": "6ffcdd8b3c54e2560b327ca1b4f4eb33ba54c0db" }
1+
{ "commit": "7a31db904d19e75a68d6a6db8f72fe7949a6f19b" }

app/components/chat/BaseChat.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -436,15 +436,17 @@ export const BaseChat = React.forwardRef<HTMLDivElement, BaseChatProps>(
436436
}
437437

438438
event.preventDefault();
439-
439+
440440
if (isStreaming) {
441441
handleStop?.();
442442
return;
443443
}
444+
444445
// ignore if using input method engine
445446
if (event.nativeEvent.isComposing) {
446-
return
447+
return;
447448
}
449+
448450
handleSendMessage?.(event);
449451
}
450452
}}

app/lib/stores/workbench.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,6 @@ export class WorkbenchStore {
297297

298298
const action = artifact.runner.actions.get()[data.actionId];
299299

300-
301300
if (!action || action.executed) {
302301
return;
303302
}

0 commit comments

Comments
 (0)