diff --git a/docs/upgrading/component-routes.md b/docs/upgrading/component-routes.md index e04be03248..6953eec70e 100644 --- a/docs/upgrading/component-routes.md +++ b/docs/upgrading/component-routes.md @@ -247,7 +247,7 @@ export default function Component() { ## 7. Boot the app -At this point you should be able to to boot the app and see the root layout. +At this point you should be able to boot the app and see the root layout. **👉 Add `dev` script and run the app** 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;"); });