Skip to content

Commit

Permalink
fix: update import paths for fast-deep-equal to use ES6 module
Browse files Browse the repository at this point in the history
  • Loading branch information
HaidarZ committed Jan 30, 2025
1 parent fea3696 commit cbf332b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
BinaryFilter,
} from '@cubejs-client/core';
import { BehaviorSubject } from 'rxjs';
import equal from 'fast-deep-equal';
import equal from 'fast-deep-equal/es6';

import { Query } from './query';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useRef } from 'react';
import equals from 'fast-deep-equal';
import equals from 'fast-deep-equal/es6';

export function useDeepCompareMemoize(value) {
const ref = useRef([]);
Expand Down

0 comments on commit cbf332b

Please sign in to comment.