8000 move files · ag-python/screenshot-to-code@52adb46 · GitHub
[go: up one dir, main page]

Skip to content

Commit 52adb46

Browse files
committed
move files
1 parent 2457a3f commit 52adb46

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

frontend/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import html2canvas from "html2canvas";
2929
import { USER_CLOSE_WEB_SOCKET_CODE } from "./constants";
3030
import CodeTab from "./components/CodeTab";
3131
import OutputSettingsSection from "./components/OutputSettingsSection";
32-
import { History } from "./history_types";
32+
import { History } from "./components/history/history_types";
3333
import HistoryDisplay from "./components/history/HistoryDisplay";
3434
import { extractHistoryTree } from "./components/history/utils";
3535
import toast from "react-hot-toast";

frontend/src/components/history/HistoryDisplay.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ScrollArea } from "@/components/ui/scroll-area";
2-
import { History, HistoryItemType } from "../../history_types";
2+
import { History, HistoryItemType } from "./history_types";
33
import toast from "react-hot-toast";
44
import classNames from "classnames";
55

frontend/src/components/history/utils.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { expect, test } from "vitest";
22
import { extractHistoryTree } from "./utils";
3-
import type { History } from "../../history_types";
3+
import type { History } from "./history_types";
44

55
const data: History = [
66
{
72DD

frontend/src/components/history/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { History } from "../../history_types";
1+
import { History } from "./history_types";
22

33
export function extractHistoryTree(
44
history: History,

0 commit comments

Comments
 (0)
0