From e04a63d08a39712bba5591c5eb4aead7ca4b6a21 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 13 Apr 2026 23:09:32 +0100 Subject: [PATCH] chore: fix pulled lint assertion --- src/auto-reply/reply/strip-inbound-meta.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auto-reply/reply/strip-inbound-meta.ts b/src/auto-reply/reply/strip-inbound-meta.ts index a8be10aa0a1..aac05f85df9 100644 --- a/src/auto-reply/reply/strip-inbound-meta.ts +++ b/src/auto-reply/reply/strip-inbound-meta.ts @@ -151,7 +151,7 @@ function stripActiveMemoryPromptPrefixBlocks(lines: string[]): string[] { } } - result.push(lines[index]!); + result.push(lines[index]); } return result;