diff --git a/packages/client/ui-agent-preset/src/client/PresetMenu.tsx b/packages/client/ui-agent-preset/src/client/PresetMenu.tsx
index 1049ee6bc2..2a6bc6ea28 100644
--- a/packages/client/ui-agent-preset/src/client/PresetMenu.tsx
+++ b/packages/client/ui-agent-preset/src/client/PresetMenu.tsx
@@ -28,8 +28,6 @@ export interface PresetMenuProps {
chevronClassName: string | undefined
/** Whether the trigger refuses interaction. */
disabled: boolean
- /** Native tooltip, absent where the surface offers none. */
- title?: string
/** Whether the menu is open — the surface owns this so it can force it shut. */
open: boolean
/** Report the menu's next open state. */
@@ -45,7 +43,7 @@ export interface PresetMenuProps {
*/
export function PresetMenu({
options, selectedId, label, userTrustLabel, buttonClassName, chevronClassName,
- disabled, title, open, onOpenChange, onSelect,
+ disabled, open, onOpenChange, onSelect,
}: PresetMenuProps) {
return (