Skip to content

Commit cc1e11e

Browse files
committed
update
1 parent 334e5a2 commit cc1e11e

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

site/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import "./globals.css";
22

33
import type { Metadata } from 'next';
44
import { Inter } from "next/font/google";
5-
import zealtConfig from "../../zealt.json";
5+
import zealtConfig from "@/zealt/config.json";
66

77
const inter = Inter({ subsets: ["latin"] });
88

site/app/tasks/[name]/[jobId]/trajectory/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import tasksData from "@/tasks.json";
1+
import tasksData from "@/zealt/tasks.json";
22
import { TrajectoryPage } from "./components/trajectory-page";
3-
import zealtConfig from "@/../zealt.json";
3+
import zealtConfig from "@/zealt/config.json";
44
import { redirect } from "next/navigation";
55
import { AlertTriangle, Check, HelpCircle, X as XIcon } from "lucide-react";
66

site/app/tasks/components/tasks-page-client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import Link from "next/link";
1717
import { useRouter, usePathname } from "next/navigation";
1818
import { clsx, type ClassValue } from "clsx";
1919
import { twMerge } from "tailwind-merge";
20-
import zealtConfig from "@/../zealt.json";
20+
import zealtConfig from "@/zealt/config.json"
2121
import {
2222
HoverCard,
2323
HoverCardContent,

0 commit comments

Comments
 (0)