fix: wrap user prompt in ai modal to prevent text stretch

This commit is contained in:
Abdulhakeem Adetunji Mustapha
2025-07-23 19:30:47 +01:00
committed by GitHub
parent b95dfed8fc
commit 329db1fd1a

View File

@@ -199,7 +199,7 @@ export const StepTwo = ({ templateInfo, setTemplateInfo }: StepProps) => {
<p className="text-muted-foreground">
Generating template suggestions based on your input...
</p>
<pre>{templateInfo.userInput}</pre>
<pre className="whitespace-normal">{templateInfo.userInput}</pre>
</div>
);
}