You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying out the @redux-devtools/chart-monitor package and it is giving me a type error when used exactly as shown in the readme:
<ChartMonitor />
No overload matches this call.
Overload 1 of 2, '(props: ChartMonitorProps<unknown, Action<string>>): ChartMonitor<unknown, Action<string>>', gave the following error.
Type '{}' is missing the following properties from type 'Pick<Readonly<ChartMonitorProps<unknown, Action<string>>>, "defaultIsVisible" | "dispatch" | "monitorState" | "nextActionId" | "actionsById" | ... 26 more ... | "tooltipOptions">': dispatch, monitorState, nextActionId, actionsById, and 25 more.
Overload 2 of 2, '(props: ChartMonitorProps<unknown, Action<string>>, context: any): ChartMonitor<unknown, Action<string>>', gave the following error.
Type '{}' is missing the following properties from type 'Pick<Readonly<ChartMonitorProps<unknown, Action<string>>>, "defaultIsVisible" | "dispatch" | "monitorState" | "nextActionId" | "actionsById" | ... 26 more ... | "tooltipOptions">': dispatch, monitorState, nextActionId, actionsById, and 25 more.ts(2769)
Does it require props now? I'm using the latest versions of @reduxjs/toolkit, redux, and typescript.
The text was updated successfully, but these errors were encountered:
Trying out the @redux-devtools/chart-monitor package and it is giving me a type error when used exactly as shown in the readme:
Does it require props now? I'm using the latest versions of @reduxjs/toolkit, redux, and typescript.
The text was updated successfully, but these errors were encountered: