diff --git a/apps/builder/src/features/blocks/integrations/webhook/components/WebhookAdvancedConfigForm.tsx b/apps/builder/src/features/blocks/integrations/webhook/components/WebhookAdvancedConfigForm.tsx
index 6b01e9636..265659d4c 100644
--- a/apps/builder/src/features/blocks/integrations/webhook/components/WebhookAdvancedConfigForm.tsx
+++ b/apps/builder/src/features/blocks/integrations/webhook/components/WebhookAdvancedConfigForm.tsx
@@ -202,24 +202,22 @@ export const WebhookAdvancedConfigForm = ({
{testResponse && (
)}
- {(testResponse || options?.responseVariableMapping.length > 0) && (
-
-
-
- Save in variables
-
-
-
-
- initialItems={options.responseVariableMapping}
- onItemsChange={handleResponseMappingChange}
- Item={ResponseMappingInputs}
- addLabel="Add an entry"
- />
-
-
-
- )}
+
+
+
+ Save in variables
+
+
+
+
+ initialItems={options.responseVariableMapping}
+ onItemsChange={handleResponseMappingChange}
+ Item={ResponseMappingInputs}
+ addLabel="Add an entry"
+ />
+
+
+
>
)
}