diff --git a/extensions/ql-vscode/src/view/common/DataGrid.tsx b/extensions/ql-vscode/src/view/common/DataGrid.tsx index d735b3c7c..a3a06941c 100644 --- a/extensions/ql-vscode/src/view/common/DataGrid.tsx +++ b/extensions/ql-vscode/src/view/common/DataGrid.tsx @@ -55,18 +55,14 @@ interface DataGridRowProps { } export const DataGridRow = forwardRef( - (props: DataGridRowProps, ref?: React.Ref) => { - const { focused, children } = props; - return ( - - {children} - - ); - }, + ( + { focused, children, "data-testid": testId }: DataGridRowProps, + ref?: React.Ref, + ) => ( + + {children} + + ), ); DataGridRow.displayName = "DataGridRow";