diff --git a/src/components/forms/form-fields-fill-panel.tsx b/src/components/forms/form-fields-fill-panel.tsx
index a419286..dcc3f48 100644
--- a/src/components/forms/form-fields-fill-panel.tsx
+++ b/src/components/forms/form-fields-fill-panel.tsx
@@ -155,25 +155,17 @@ export function FormFieldsFillPanel({
return (
{labelEl}
-
+ placeholder="Select client"
+ searchPlaceholder="Search clients…"
+ emptyText="No clients found."
+ options={clients.map((c) => ({ value: c.name, label: c.name, keywords: c.name }))}
+ />
);
}
@@ -183,42 +175,30 @@ export function FormFieldsFillPanel({
return (
{labelEl}
-
-