⚗️ Implement bot v2 MVP (#194)

Closes #190
This commit is contained in:
Baptiste Arnaud
2022-12-22 17:02:34 +01:00
committed by GitHub
parent e55823e011
commit 1a3869ae6d
202 changed files with 8060 additions and 1152 deletions

View File

@@ -17,6 +17,7 @@ const resultsContext = createContext<{
onDeleteResults: (totalResultsDeleted: number) => void
fetchNextPage: () => void
refetchResults: () => void
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
//@ts-ignore
}>({})

View File

@@ -2,10 +2,12 @@ import { Checkbox, Flex } from '@chakra-ui/react'
import React from 'react'
const TableCheckBox = (
// eslint-disable-next-line @typescript-eslint/no-explicit-any
{ indeterminate, checked, ...rest }: any,
ref: React.LegacyRef<HTMLInputElement>
) => {
const defaultRef = React.useRef()
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const resolvedRef: any = ref || defaultRef
return (

View File

@@ -3,7 +3,6 @@ import {
Checkbox,
Flex,
Skeleton,
useColorMode,
useColorModeValue,
} from '@chakra-ui/react'
import React from 'react'