Skip to content

Commit

Permalink
fix(frontend): lints testset table
Browse files Browse the repository at this point in the history
  • Loading branch information
ardaerzin committed Dec 16, 2024
1 parent cfa104a commit dd03f85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions agenta-web/src/components/TestSetTable/TestsetTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {NoticeType} from "antd/es/message/interface"
import {GenericObject, KeyValuePair} from "@/lib/Types"
import TableCellsRenderer from "./TableCellsRenderer"
import TableHeaderComponent from "./TableHeaderComponent"
import AgGridReact, { type AgGridReactType } from "@/lib/helpers/agGrid"
import AgGridReact, {type AgGridReactType} from "@/lib/helpers/agGrid"

type TestsetTableProps = {
mode: "edit"
Expand Down Expand Up @@ -84,7 +84,7 @@ const TestsetTable: React.FC<TestsetTableProps> = ({mode}) => {
const [inputValues, setInputValues] = useStateCallback(columnDefs.map((col) => col.field))
const [focusedRowData, setFocusedRowData] = useState<GenericObject>()
const [writeMode, setWriteMode] = useState(mode)
const [gridRef, setGridRef] = useState<AgGridReactType["api"]>()
const [gridRef, setGridRef] = useState<AgGridReactType["api"]>()

const [selectedRow, setSelectedRow] = useState([])

Expand Down

0 comments on commit dd03f85

Please sign in to comment.