We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bed40c commit bab5fd0Copy full SHA for bab5fd0
src/app/components/StateRoute.tsx
@@ -80,7 +80,12 @@ const StateRoute = (props: StateRouteProps) => {
80
//* we wrap History in a ParentSize div, in order to make use of Visx's Zoom functionality
81
const renderHistory = () => {
82
if (hierarchy) {
83
- return <History hierarchy={hierarchy} />;
+ return (<History
84
+ hierarchy={hierarchy}
85
+ dispatch={dispatch}
86
+ sliderIndex={sliderIndex}
87
+ viewIndex={viewIndex}
88
+ />)
89
}
90
return <div className="noState">{NO_STATE_MSG}</div>;
91
};
0 commit comments