From 0c8410c655f206be4abece00523f96dd311aaef9 Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Mon, 29 Sep 2025 15:59:04 +0000 Subject: [PATCH] Fix text wrapping in combobox --- src/components/ui/combobox.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/components/ui/combobox.tsx b/src/components/ui/combobox.tsx index 9a80a32d..1bcc7486 100644 --- a/src/components/ui/combobox.tsx +++ b/src/components/ui/combobox.tsx @@ -55,10 +55,12 @@ export function Combobox({ variant="outline" role="combobox" aria-expanded={open} - className={cn("w-full justify-between", className)} + className={cn("w-full justify-between text-left", className)} disabled={disabled} > - {selectedOption ? selectedOption.label : placeholder} + + {selectedOption ? selectedOption.label : placeholder} +