Skip to content

Commit 4aad4be

Browse files
maneeshtcabljac
authored andcommitted
Fixed file
1 parent e1fd2a0 commit 4aad4be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/react/src/data-connect/utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ export function deepEqual(a: unknown, b: unknown) {
33
return false;
44
}
55
if (typeof a === "object" && a !== null) {
6-
if(a === b) {
7-
return true;
6+
if (a === b) {
7+
return true;
88
}
99
if (Array.isArray(a)) {
1010
if (a.length !== (b as unknown[]).length) {

0 commit comments

Comments
 (0)