Skip to content

Commit 5fdf732

Browse files
committed
fix(OUT-1809) : used appropriate type for tableRef prop in HistoryCellRenderer
1 parent 57520ff commit 5fdf732

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/components/table/cellRenderers/HistoryCellRenderer.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,13 @@ import { FiberManualRecord } from '@mui/icons-material';
44
import { Box, CircularProgress, Popper, Stack, Typography } from '@mui/material';
55
import React, { useState } from 'react';
66

7-
export const HistoryCellRenderer = ({ value, tableRef }: { value: { row: any; key: string }; tableRef: any }) => {
7+
export const HistoryCellRenderer = ({
8+
value,
9+
tableRef,
10+
}: {
11+
value: { row: any; key: string };
12+
tableRef: React.RefObject<HTMLDivElement>;
13+
}) => {
814
const appState = useAppState();
915
const [loading, setLoading] = useState(false);
1016

0 commit comments

Comments
 (0)