diff --git a/src/container/EdgeRenderer/index.tsx b/src/container/EdgeRenderer/index.tsx
index 2f4fdc37..eb524e7f 100644
--- a/src/container/EdgeRenderer/index.tsx
+++ b/src/container/EdgeRenderer/index.tsx
@@ -73,7 +73,13 @@ const EdgeRenderer = (props: EdgeRendererProps) => {
return null;
}
- const { connectionLineType, defaultMarkerColor, connectionLineStyle, connectionLineComponent, connectionLineContainerStyle } = props;
+ const {
+ connectionLineType,
+ defaultMarkerColor,
+ connectionLineStyle,
+ connectionLineComponent,
+ connectionLineContainerStyle,
+ } = props;
const renderConnectionLine = connectionNodeId && connectionHandleType;
return (
@@ -183,26 +189,28 @@ const EdgeRenderer = (props: EdgeRendererProps) => {
))}
- {renderConnectionLine && }
+ {renderConnectionLine && (
+
+ )}
>
);
};