We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4e6daa commit 4887bc2Copy full SHA for 4887bc2
1 file changed
client/src/components/SamplingRequest.tsx
@@ -8,7 +8,7 @@ import {
8
import { PendingRequest } from "./SamplingTab";
9
import DynamicJsonForm from "./DynamicJsonForm";
10
import { useToast } from "@/hooks/use-toast";
11
-import { JsonSchemaType, JsonValue } from "@/utils/jsonUtils";
+import { JsonValue } from "@/utils/jsonUtils";
12
13
export type SamplingRequestProps = {
14
request: PendingRequest;
@@ -40,7 +40,7 @@ const SamplingRequest = ({
40
)?.type;
41
42
const schema = useMemo(() => {
43
- const s: JsonSchemaType = {
+ const s: any = {
44
type: "object",
45
description: "Message result",
46
properties: {
0 commit comments