Skip to content

Commit 58e0787

Browse files
committed
style: prettier
1 parent c4445d3 commit 58e0787

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/Node/index.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,12 @@ export default class Node extends React.Component<NodeProps, NodeState> {
7070
return this.shouldNodeTransform(this.props, nextProps, this.state, nextState);
7171
}
7272

73-
shouldNodeTransform = (ownProps: NodeProps, nextProps: NodeProps, ownState: NodeState, nextState: NodeState) =>
73+
shouldNodeTransform = (
74+
ownProps: NodeProps,
75+
nextProps: NodeProps,
76+
ownState: NodeState,
77+
nextState: NodeState
78+
) =>
7479
nextProps.subscriptions !== ownProps.subscriptions ||
7580
nextProps.position.x !== ownProps.position.x ||
7681
nextProps.position.y !== ownProps.position.y ||

0 commit comments

Comments
 (0)