mirror of
https://github.com/plankanban/planka.git
synced 2025-07-30 10:39:46 +02:00
Mute socket messages in production, fix max-len, update dependencies
This commit is contained in:
parent
d7cc9a0d56
commit
2398199740
26 changed files with 1157 additions and 1192 deletions
|
@ -2,5 +2,7 @@ import { useCallback } from 'react';
|
|||
|
||||
import useDeepCompareMemoize from './use-deep-compare-memoize';
|
||||
|
||||
// eslint-disable-next-line max-len
|
||||
export default (callback, dependencies) => useCallback(callback, useDeepCompareMemoize(dependencies));
|
||||
export default (callback, dependencies) => useCallback(
|
||||
callback,
|
||||
useDeepCompareMemoize(dependencies),
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue