Skip to content

Commit

Permalink
Merge pull request #1777 from ashrafchowdury/refactor/testset-new-api…
Browse files Browse the repository at this point in the history
…-page-imports

Refactor: improved the testset new api page import path
  • Loading branch information
aakrem authored Jun 23, 2024
2 parents 6f9587b + e6f28f6 commit 0873e80
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions agenta-web/src/pages/apps/[app_id]/testsets/new/api/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import DynamicCodeBlock from "@/components/DynamicCodeBlock/DynamicCodeBlock"

import pythonCode from "../../../../../../code_snippets/testsets/create_with_json/python"
import cURLCode from "../../../../../../code_snippets/testsets/create_with_json/curl"
import tsCode from "../../../../../../code_snippets/testsets/create_with_json/typescript"
import pythonCode from "@/code_snippets/testsets/create_with_json/python"
import cURLCode from "@/code_snippets/testsets/create_with_json/curl"
import tsCode from "@/code_snippets/testsets/create_with_json/typescript"

import pythonCodeUpload from "../../../../../../code_snippets/testsets/create_with_upload/python"
import cURLCodeUpload from "../../../../../../code_snippets/testsets/create_with_upload/curl"
import tsCodeUpload from "../../../../../../code_snippets/testsets/create_with_upload/typescript"
import pythonCodeUpload from "@/code_snippets/testsets/create_with_upload/python"
import cURLCodeUpload from "@/code_snippets/testsets/create_with_upload/curl"
import tsCodeUpload from "@/code_snippets/testsets/create_with_upload/typescript"
import {Typography} from "antd"
import {useRouter} from "next/router"
import {createUseStyles} from "react-jss"
Expand Down

0 comments on commit 0873e80

Please sign in to comment.