We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc1033d commit a6c916dCopy full SHA for a6c916d
src/components/react/SearchDialog.tsx
@@ -493,7 +493,12 @@ export const SearchDialog: React.FC<SearchDialogProps> = ({
493
className="relative w-full bg-popover border border-border rounded-lg shadow-lg overflow-hidden"
494
>
495
{/* Search input */}
496
- <div className={cn("flex items-center gap-3 px-4 py-3", query && "border-b border-border")}>
+ <div
497
+ className={cn(
498
+ 'flex items-center gap-3 px-4 py-3',
499
+ query && 'border-b border-border',
500
+ )}
501
+ >
502
<svg
503
className="w-5 h-5 text-muted-foreground flex-shrink-0"
504
fill="none"
0 commit comments