diff --git a/ui/desktop/src/components/GooseResponseForm.tsx b/ui/desktop/src/components/GooseResponseForm.tsx
index 9571d7adf2..0785f7bd76 100644
--- a/ui/desktop/src/components/GooseResponseForm.tsx
+++ b/ui/desktop/src/components/GooseResponseForm.tsx
@@ -78,14 +78,6 @@ export default function GooseResponseForm({ message, metadata, append }: GooseRe
append(message);
};
- const handleCancel = () => {
- const message = {
- content: "No - do not execute this plan",
- role: "user",
- };
- append(message);
- };
-
const handleSubmit = () => {
if (selectedOption !== null) {
const message = {
@@ -108,14 +100,6 @@ export default function GooseResponseForm({ message, metadata, append }: GooseRe
Take flight with this plan
-
)}
{isQuestion && isOptions && options.length > 0 && (