diff --git a/ui/packages/evidently-ui-lib/src/components/OnClickedPoint.tsx b/ui/packages/evidently-ui-lib/src/components/OnClickedPoint.tsx index 91bde979dc..4ac093ed31 100644 --- a/ui/packages/evidently-ui-lib/src/components/OnClickedPoint.tsx +++ b/ui/packages/evidently-ui-lib/src/components/OnClickedPoint.tsx @@ -5,6 +5,8 @@ import type { PlotMouseEvent } from 'plotly.js' import { useEffect, useState } from 'react' import { Link as RLink } from 'react-router-dom' +export type PlotMouseEventType = PlotMouseEvent + export const GoToSnapshotByPoint = ({ event }: { event: PlotMouseEvent }) => { const p = event.points[0] const customdata = p.customdata as Partial<