From 5384040051397c321d4163a4ac6031d1f6baf6df Mon Sep 17 00:00:00 2001 From: David Hill Date: Fri, 23 Jan 2026 20:38:24 +0000 Subject: [PATCH] fix(app): truncate comment text and set card max-width to 200px --- packages/app/src/components/prompt-input.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/app/src/components/prompt-input.tsx b/packages/app/src/components/prompt-input.tsx index 8641cdd27..3f137f862 100644 --- a/packages/app/src/components/prompt-input.tsx +++ b/packages/app/src/components/prompt-input.tsx @@ -1681,7 +1681,7 @@ export const PromptInput: Component = (props) => { return (
{ @@ -1720,7 +1720,7 @@ export const PromptInput: Component = (props) => { />
- {(comment) =>
{comment()}
} + {(comment) =>
{comment()}
}
)