fix: border for the search box in my models (#4987)

This commit is contained in:
David 2025-05-14 11:48:18 +07:00 committed by GitHub
parent 8d8703bedf
commit db43008813
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -57,7 +57,7 @@ const ModelSearch = ({ onSearchLocal }: Props) => {
value={searchText}
clearable={searchText.length > 0}
onClear={onClear}
className="border-1 bg-[hsla(var(--app-bg))]"
className="bg-[hsla(var(--app-bg))]"
onClick={() => {
onSearchLocal?.(inputRef.current?.value ?? '')
}}