Skip to content

Commit 8dda031

Browse files
committed
Remove unused import
1 parent aaf5a12 commit 8dda031

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/components/index-page/how-it-works/index.tsx

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1+
import { useRef } from "react"
2+
import { useInView } from "motion/react"
3+
import dynamic from "next/dynamic"
4+
15
import { Button } from "@/app/conf/_design-system/button"
26
import { SectionLabel } from "@/app/conf/_design-system/section-label"
3-
import { CodeA, CodeB, CodeC } from "../../code-blocks"
7+
import { CodeA, CodeB, CodeC } from "@/components/code-blocks"
48

5-
import { useRef } from "react"
6-
import { useInView } from "motion/react"
79
import { HowItWorksListItem } from "./how-it-works-list-item"
8-
import dynamic from "next/dynamic"
910
import { PlayButton } from "./play-button"
1011

1112
const InteractiveEditor = dynamic(import("./interactive-editor"), {

src/components/index-page/how-it-works/interactive-editor.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ import { graphql, GraphQLSchema } from "graphql"
33

44
import { QueryEditor } from "@/components/interactive-code-block/query-editor"
55
import { ResultViewer } from "@/components/interactive-code-block/result-viewer"
6+
import { getVariableToType } from "@/components/interactive-code-block/get-variable-to-type"
7+
import { VariableEditor } from "@/components/interactive-code-block/variable-editor"
8+
import { CodeBlockLabel } from "@/components/pre/code-block-label"
69

710
import { HowItWorksListItem } from "./how-it-works-list-item"
8-
import { getVariableToType } from "../../interactive-code-block/get-variable-to-type"
9-
import { CodeBlockLabel } from "../../pre/code-block-label"
10-
import { VariableEditor } from "../../interactive-code-block/variable-editor"
1111
import { PlayButton } from "./play-button"
12-
import { run } from "node:test"
1312

1413
const INITIAL_QUERY_TEXT = `{
1514
project(name: "GraphQL") {

0 commit comments

Comments
 (0)