diff --git a/apps/next/components/editor/FunctionEditor.tsx b/apps/next/components/editor/FunctionEditor.tsx index 487cefc..4cf66aa 100644 --- a/apps/next/components/editor/FunctionEditor.tsx +++ b/apps/next/components/editor/FunctionEditor.tsx @@ -1,6 +1,6 @@ import { FunctionCallBlock, FunctionInfo } from "@ozhanefe/ts-codegenerator"; import React, { useState } from "react"; -import { FunctionCombobox } from "../FunctionCombobox"; +import { FunctionCombobox } from "./components/FunctionCombobox"; import { useCodeGenerator } from "@/contexts/CodeGeneratorContext"; import { Input } from "@ui/input"; import { Button } from "@ui/button"; diff --git a/apps/next/components/editor/components/BlockAdder.tsx b/apps/next/components/editor/components/BlockAdder.tsx index 7dfb7b9..0496233 100644 --- a/apps/next/components/editor/components/BlockAdder.tsx +++ b/apps/next/components/editor/components/BlockAdder.tsx @@ -14,7 +14,7 @@ import { FunctionInfo, findAndUpdateBlock, } from "@ozhanefe/ts-codegenerator"; -import { FunctionCombobox } from "@/components/FunctionCombobox"; +import { FunctionCombobox } from "@/components/editor/components/FunctionCombobox"; type BlockType = CodeBlock["blockType"]; diff --git a/apps/next/components/FunctionCombobox.tsx b/apps/next/components/editor/components/FunctionCombobox.tsx similarity index 100% rename from apps/next/components/FunctionCombobox.tsx rename to apps/next/components/editor/components/FunctionCombobox.tsx