From 5aec401d08f3d72f4c10c129f8d432baee6fe867 Mon Sep 17 00:00:00 2001 From: shrimbly Date: Fri, 16 Jan 2026 23:27:13 +1300 Subject: [PATCH] fix(26-01): narrow initial view dialog to max-w-2xl Co-Authored-By: Claude Opus 4.5 --- src/components/quickstart/WelcomeModal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/quickstart/WelcomeModal.tsx b/src/components/quickstart/WelcomeModal.tsx index 757f8e31..fd959ac3 100644 --- a/src/components/quickstart/WelcomeModal.tsx +++ b/src/components/quickstart/WelcomeModal.tsx @@ -75,7 +75,7 @@ export function WelcomeModal({ ); // Template explorer needs more width for two-column layout - const dialogWidth = currentView === "templates" ? "max-w-6xl" : "max-w-4xl"; + const dialogWidth = currentView === "templates" ? "max-w-6xl" : "max-w-2xl"; const dialogHeight = currentView === "templates" ? "max-h-[85vh]" : "max-h-[80vh]"; return (