Skip to content

Commit 1726268

Browse files
committed
fixup
1 parent e41a38b commit 1726268

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/browser/components/CompactionWarning.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const CompactionWarning: React.FC<{
2525
if (willCompactNext) {
2626
return (
2727
<div className="text-plan-mode bg-plan-mode/10 mx-4 my-4 rounded-sm px-4 py-3 text-center text-xs font-medium">
28-
⚠️ Context limit reached. Next message will trigger auto-compaction.
28+
⚠️ Context limit reached. Next message will trigger Auto-Compaction.
2929
</div>
3030
);
3131
}

src/browser/utils/chatCommands.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,9 @@ function formatCompactionCommand(options: CompactionOptions): string {
609609
if (options.model) {
610610
cmd += ` -m ${options.model}`;
611611
}
612+
if (options.continueMessage) {
613+
cmd += `\n${options.continueMessage.text}`;
614+
}
612615
return cmd;
613616
}
614617

0 commit comments

Comments
 (0)