Skip to content

Commit 8dd49d6

Browse files
committed
fix: size message tail window
1 parent c3ab277 commit 8dd49d6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/store.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ const paths = {
2121
mcpToken: path.join(root, 'state', 'mcp-token'),
2222
};
2323

24-
const maxMessageBytes = 16 * 1024;
24+
// 50 messages x 2000 code points x 4 bytes, plus JSON overhead and headroom.
25+
const maxMessageBytes = 512 * 1024;
2526

2627
const defaults = {
2728
dashboardPort: 5757,

0 commit comments

Comments
 (0)