From c7c259610da63f217848fa3e0abb7a430d596a0a Mon Sep 17 00:00:00 2001 From: Matthew Phillips Date: Wed, 1 Apr 2026 17:25:52 -0400 Subject: [PATCH] fix(e2e): remove bogus Node.js import breaking actions-blog tests A spurious import of createLoggerFromFlags from cli/flags.ts was added to the client-side PostComment.tsx component via a sync commit, breaking hydration and causing Comment and Logout tests to fail. --- .../e2e/fixtures/actions-blog/src/components/PostComment.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/astro/e2e/fixtures/actions-blog/src/components/PostComment.tsx b/packages/astro/e2e/fixtures/actions-blog/src/components/PostComment.tsx index 4c763b2cab86..28cd0085bc77 100644 --- a/packages/astro/e2e/fixtures/actions-blog/src/components/PostComment.tsx +++ b/packages/astro/e2e/fixtures/actions-blog/src/components/PostComment.tsx @@ -1,6 +1,5 @@ import { actions, isInputError } from 'astro:actions'; import { useState } from 'react'; -import {createLoggerFromFlags} from "../../../../../src/cli/flags.ts"; export function PostComment({ postId,