Skip to content

Commit

Permalink
refactor:
Browse files Browse the repository at this point in the history
- Update imports in FunctionEditor and BlockAdder to reflect the new folder structure
  • Loading branch information
ozhanefemeral committed Aug 4, 2024
1 parent 7b62bd1 commit 41dcca1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/next/components/editor/FunctionEditor.tsx
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion apps/next/components/editor/components/BlockAdder.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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"];

Expand Down
File renamed without changes.

0 comments on commit 41dcca1

Please sign in to comment.