Skip to content

chore: simplify imports #9896

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 28, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix some imports
  • Loading branch information
aslilac committed Sep 27, 2023
commit 35c02fd1f07430ad1d69f447df2167f08315b98e
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
getTemplateVersionFiles,
TemplateVersionFiles,
} from "utils/templateVersion";
import { getTemplatePageTitle } from "utils";
import { getTemplatePageTitle } from "../utils";

const fetchTemplateFiles = async (
organizationId: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { getLatencyColor } from "utils/latency";
import chroma from "chroma-js";
import { colors } from "theme/colors";
import { Helmet } from "react-helmet-async";
import { getTemplatePageTitle } from "utils";
import { getTemplatePageTitle } from "../utils";
import { Loader } from "components/Loader/Loader";
import {
DAUsResponse,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useTemplateLayoutContext } from "pages/TemplatePage/TemplateLayout";
import { FC } from "react";
import { Helmet } from "react-helmet-async";
import { getTemplatePageTitle } from "utils";
import { getTemplatePageTitle } from "../utils";
import { TemplateSummaryPageView } from "./TemplateSummaryPageView";
import { useQuery } from "@tanstack/react-query";
import { getTemplateVersionResources } from "api/api";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { useTemplateLayoutContext } from "pages/TemplatePage/TemplateLayout";
import { VersionsTable } from "./VersionsTable";
import { useState } from "react";
import { Helmet } from "react-helmet-async";
import { getTemplatePageTitle } from "utils";
import { getTemplatePageTitle } from "../utils";

const TemplateVersionsPage = () => {
const { template, permissions } = useTemplateLayoutContext();
Expand Down