Skip to content

Commit 3fde2e4

Browse files
committed
chore(lint): missing semi
1 parent a0dfc32 commit 3fde2e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Resizable.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ export default class Resizable extends React.Component<Props, State> {
175175
*/
176176
resizeHandler(handlerName: string, axis: ResizeHandle): Function {
177177
return (e: SyntheticEvent<> | MouseEvent, {node, deltaX, deltaY}: DragCallbackData) => {
178-
deltaX /= this.props.transformScale
179-
deltaY /= this.props.transformScale
178+
deltaX /= this.props.transformScale;
179+
deltaY /= this.props.transformScale;
180180

181181
// Axis restrictions
182182
const canDragX = (this.props.axis === 'both' || this.props.axis === 'x') && ['n', 's'].indexOf(axis) === -1;

0 commit comments

Comments
 (0)