diff --git a/apps/client/src/widgets/react/HelpRemoveButtons.tsx b/apps/client/src/widgets/react/HelpRemoveButtons.tsx
index 7eda18b97..79c0a138f 100644
--- a/apps/client/src/widgets/react/HelpRemoveButtons.tsx
+++ b/apps/client/src/widgets/react/HelpRemoveButtons.tsx
@@ -14,17 +14,20 @@ export default function HelpRemoveButtons({ help, removeText, onRemove }: HelpRe
{help && <>
{help}
{" "}
- >}
+ >}
{
+ e.preventDefault();
+ onRemove?.();
+ }}
/>
);
-}
\ No newline at end of file
+}