File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717 - name : Check formatting
1818 run : npx prettier --check .
1919
20+ - name : Check linting
21+ working-directory : ./client
22+ run : npx eslint .
23+
2024 - uses : actions/setup-node@v4
2125 with :
2226 node-version : 18
2630 # - run: npm ci
2731 - run : npm install --no-package-lock
2832
29- - name : Check linting
30- working-directory : ./client
31- run : npm run lint
32-
3333 - name : Run client tests
3434 working-directory : ./client
3535 run : npm test
Original file line number Diff line number Diff line change 88import { PendingRequest } from "./SamplingTab" ;
99import DynamicJsonForm from "./DynamicJsonForm" ;
1010import { useToast } from "@/hooks/use-toast" ;
11- import { JsonSchemaType , JsonValue } from "@/utils/jsonUtils" ;
11+ import { JsonValue } from "@/utils/jsonUtils" ;
1212
1313export type SamplingRequestProps = {
1414 request : PendingRequest ;
@@ -40,7 +40,7 @@ const SamplingRequest = ({
4040 ) ?. type ;
4141
4242 const schema = useMemo ( ( ) => {
43- const s : JsonSchemaType = {
43+ const s : any = {
4444 type : "object" ,
4545 description : "Message result" ,
4646 properties : {
You can’t perform that action at this time.
0 commit comments