Skip to content

Commit

Permalink
chore: Move EditHistory to sidebar folder
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr committed May 1, 2024
1 parent cd46bce commit 9a511c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import Typography from "@mui/material/Typography";
import { formatOps } from "@planx/graph";
import DelayedLoadingIndicator from "components/DelayedLoadingIndicator";
import React from "react";
import { useStore } from "../lib/store";
import { useStore } from "../../lib/store";
import { Operation } from "types";
import { formatLastEditDate } from "../utils";
import { formatLastEditDate } from "../../utils";

export const EditHistory = () => {
const [flowId, flow] = useStore((state) => [state.id, state.flow]);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import Input from "ui/shared/Input";

import Questions from "../../../Preview/Questions";
import { useStore } from "../../lib/store";
import { EditHistory } from "../EditHistory";
import { EditHistory } from "./EditHistory";

type SidebarTabs = "PreviewBrowser" | "History";

Expand Down

0 comments on commit 9a511c1

Please sign in to comment.