Skip to content

Commit 0d372d6

Browse files
jomastiSTRML
authored andcommitted
Fix lodash.isequal import (react-grid-layout#336)
This was breaking on Linux builds.
1 parent ac6ad3d commit 0d372d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// @flow
2-
import isEqual from 'lodash.isEqual';
2+
import isEqual from 'lodash.isequal';
33
import React from 'react';
44
export type LayoutItemRequired = {w: number, h: number, x: number, y: number, i: string};
55
export type LayoutItem = LayoutItemRequired &

0 commit comments

Comments
 (0)