From 2bf8e8b2c7d58552710fc168478fb01aab69a37a Mon Sep 17 00:00:00 2001 From: Jacob Richman Date: Tue, 1 Jul 2025 11:54:27 -0400 Subject: [PATCH] Fix spurious logs about invalid MaxSizedBox children due to Ink6 + React19 migration (#2794) --- packages/cli/src/ui/components/shared/MaxSizedBox.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/ui/components/shared/MaxSizedBox.tsx b/packages/cli/src/ui/components/shared/MaxSizedBox.tsx index 8880e894..c803b680 100644 --- a/packages/cli/src/ui/components/shared/MaxSizedBox.tsx +++ b/packages/cli/src/ui/components/shared/MaxSizedBox.tsx @@ -278,7 +278,10 @@ function visitBoxRow(element: React.ReactNode): Row { // Allow the key prop, which is automatically added by React. maxExpectedProps += 1; } - if (boxProps.flexDirection !== 'row') { + if ( + boxProps.flexDirection !== undefined && + boxProps.flexDirection !== 'row' + ) { debugReportError( 'MaxSizedBox children must have flexDirection="row".', element,