diff --git a/apps/builder/src/features/graph/components/Endpoints/SourceEndpoint.tsx b/apps/builder/src/features/graph/components/Endpoints/SourceEndpoint.tsx index 8fdedc1a9..26622e888 100644 --- a/apps/builder/src/features/graph/components/Endpoints/SourceEndpoint.tsx +++ b/apps/builder/src/features/graph/components/Endpoints/SourceEndpoint.tsx @@ -55,7 +55,6 @@ export const SourceEndpoint = ({ if (!groupsCoordinates) return <> return ( {isConnectable && hasDefaultConnector(block) && ( diff --git a/apps/builder/src/features/graph/utils.ts b/apps/builder/src/features/graph/utils.ts index 6c88910b4..bd1c66a91 100644 --- a/apps/builder/src/features/graph/utils.ts +++ b/apps/builder/src/features/graph/utils.ts @@ -343,7 +343,7 @@ export const getEndpointTopOffset = ({ if (!endpointId) return const endpointRef = endpoints[endpointId]?.ref if (!endpointRef?.current) return - const endpointHeight = 34 * graphScale + const endpointHeight = 20 * graphScale return ( (endpointRef.current.getBoundingClientRect().y + endpointHeight / 2 -