Skip to content

Commit 02e3827

Browse files
committed
.
1 parent 09f9f4a commit 02e3827

15 files changed

+24
-24
lines changed

app/(default)/(project)/FreeTacMan/chart/policy-rollouts-1.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
19+
} from "../ui/chart"
2020
const chartData = [
2121
{ browser: "1", visitors: 35, fill: "var(--color-1)" },
2222
{ browser: "2", visitors: 75, fill: "var(--color-2)" },

app/(default)/(project)/FreeTacMan/chart/policy-rollouts-2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
19+
} from "../ui/chart"
2020
const chartData = [
2121
{ browser: "1", visitors: 20, fill: "var(--color-1)" },
2222
{ browser: "2", visitors: 70, fill: "var(--color-2)" },

app/(default)/(project)/FreeTacMan/chart/policy-rollouts-3.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
19+
} from "../ui/chart"
2020
const chartData = [
2121
{ browser: "1", visitors: 20, fill: "var(--color-1)" },
2222
{ browser: "2", visitors: 55, fill: "var(--color-2)" },

app/(default)/(project)/FreeTacMan/chart/policy-rollouts-4.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
19+
} from "../ui/chart"
2020
const chartData = [
2121
{ browser: "1", visitors: 30, fill: "var(--color-1)" },
2222
{ browser: "2", visitors: 65, fill: "var(--color-2)" },

app/(default)/(project)/FreeTacMan/chart/policy-rollouts-5.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
19+
} from "../ui/chart"
2020
const chartData = [
2121
{ browser: "1", visitors: 0, fill: "var(--color-1)" },
2222
{ browser: "2", visitors: 10, fill: "var(--color-2)" },

app/(default)/(project)/FreeTacMan/chart/policy-rollouts-average.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
19+
} from "../ui/chart"
2020

2121
const chartData = [
2222
{ category: "1", value1: 35, value2: 75, value3: 80, fill1: "var(--color-1)", fill2: "var(--color-2)", fill3: "var(--color-3)" },

app/(default)/(project)/FreeTacMan/chart/user-study-1.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
20-
import { getUserStudySingleData } from "@/./user-study"
19+
} from "../ui/chart"
20+
import { getUserStudySingleData } from "./user-study"
2121
const chartData = getUserStudySingleData("1")
2222

2323
const chartConfig = {

app/(default)/(project)/FreeTacMan/chart/user-study-2.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
20-
import { getUserStudySingleData } from "@/./user-study"
19+
} from "../ui/chart"
20+
import { getUserStudySingleData } from "./user-study"
2121
const chartData = getUserStudySingleData("2")
2222

2323
const chartConfig = {

app/(default)/(project)/FreeTacMan/chart/user-study-3.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
20-
import { getUserStudySingleData } from "@/./user-study"
19+
} from "../ui/chart"
20+
import { getUserStudySingleData } from "./user-study"
2121
const chartData = getUserStudySingleData("3")
2222

2323
const chartConfig = {

app/(default)/(project)/FreeTacMan/chart/user-study-4.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ import {
1616
ChartContainer,
1717
ChartTooltip,
1818
ChartTooltipContent,
19-
} from "./ui/chart"
20-
import { getUserStudySingleData } from "@/./user-study"
19+
} from "../ui/chart"
20+
import { getUserStudySingleData } from "./user-study"
2121
const chartData = getUserStudySingleData("4")
2222

2323
const chartConfig = {

0 commit comments

Comments
 (0)