From a6701c82ee84fd4a1c3d890b0482b00fc7bd9e21 Mon Sep 17 00:00:00 2001 From: clonemycode Date: Tue, 3 Jun 2025 18:21:19 +0800 Subject: [PATCH] chore: remove redundant word in comment Signed-off-by: clonemycode --- contributors.yml | 1 + integration/error-sanitization-test.ts | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/contributors.yml b/contributors.yml index f8c273c90c..a290f84bec 100644 --- a/contributors.yml +++ b/contributors.yml @@ -72,6 +72,7 @@ - ChristophP - christowiz - clavery +- clonemycode - Cmoen11 - codeape2 - coryhouse diff --git a/integration/error-sanitization-test.ts b/integration/error-sanitization-test.ts index 965a9b3390..ab2f279f2a 100644 --- a/integration/error-sanitization-test.ts +++ b/integration/error-sanitization-test.ts @@ -212,7 +212,7 @@ test.describe("Error Sanitization", () => { expect(html).toMatch("Defer Route"); expect(html).toMatch("RESOLVED"); expect(html).not.toMatch("MESSAGE:"); - // Defer errors are not not part of the JSON blob but rather rejected + // Defer errors are not part of the JSON blob but rather rejected // against a pending promise and therefore are inlined JS. expect(html).not.toMatch("x.stack=e.stack;"); }); @@ -608,7 +608,7 @@ test.describe("Error Sanitization", () => { expect(html).toMatch("Defer Route"); expect(html).toMatch("RESOLVED"); expect(html).not.toMatch("MESSAGE:"); - // Defer errors are not not part of the JSON blob but rather rejected + // Defer errors are not part of the JSON blob but rather rejected // against a pending promise and therefore are inlined JS. expect(html).not.toMatch("x.stack=e.stack;"); });