diff --git a/frontend/webapp/hooks/destinations/useConnectDestinationForm.ts b/frontend/webapp/hooks/destinations/useConnectDestinationForm.ts index 5d4cff9b8..2e03fa492 100644 --- a/frontend/webapp/hooks/destinations/useConnectDestinationForm.ts +++ b/frontend/webapp/hooks/destinations/useConnectDestinationForm.ts @@ -58,7 +58,16 @@ export function useConnectDestinationForm() { }; case INPUT_TYPES.KEY_VALUE_PAIR: + return { + name, + componentType, + title: displayName, + ...componentPropertiesJson, + }; + case INPUT_TYPES.CHECKBOX: + componentPropertiesJson = safeJsonParse<{ [key: string]: string }>(componentProperties, {}); + return { name, componentType,