Skip to content

Commit 11f94f2

Browse files
committed
Linting minor change
1 parent cc6522c commit 11f94f2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dash/dash-renderer/src/observers/executedCallbacks.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ import {
1111
pathOr
1212
} from 'ramda';
1313

14+
import {ThunkDispatch} from 'redux-thunk';
15+
import {AnyAction} from 'redux';
16+
1417
import {IStoreState} from '../store';
1518

1619
import {
@@ -63,7 +66,7 @@ const observer: IStoreObserverDefinition<IStoreState> = {
6366
// In case the update contains whole components, see if any of
6467
// those components have props to update to persist user edits.
6568
const {props} = applyPersistence({props: updatedProps}, dispatch);
66-
dispatch(
69+
(dispatch as ThunkDispatch<any, any, AnyAction>)(
6770
updateProps({
6871
itempath,
6972
props,

0 commit comments

Comments
 (0)