Skip to content

Commit 37ec9ee

Browse files
committed
Move some files around
1 parent 9c1125e commit 37ec9ee

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { ChartPageLoading as default } from "../../../../components/PriceFeed/chart-page";
1+
export { ChartPageLoading as default } from "../../../../components/PriceFeed/Chart/chart-page";
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export { ChartPage as default } from "../../../../components/PriceFeed/chart-page";
1+
export { ChartPage as default } from "../../../../components/PriceFeed/Chart/chart-page";
22

33
export const revalidate = 3600;
File renamed without changes.

apps/insights/src/components/PriceFeed/chart-page.tsx renamed to apps/insights/src/components/PriceFeed/Chart/chart-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Spinner } from "@pythnetwork/component-library/Spinner";
55

66
import { Chart } from "./chart";
77
import styles from "./chart-page.module.scss";
8-
import { getFeed } from "./get-feed";
8+
import { getFeed } from "../get-feed";
99

1010
type Props = {
1111
params: Promise<{
File renamed without changes.

apps/insights/src/components/PriceFeed/chart.tsx renamed to apps/insights/src/components/PriceFeed/Chart/chart.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ import { useEffect, useRef, useCallback } from "react";
1010
import { z } from "zod";
1111

1212
import styles from "./chart.module.scss";
13-
import { useLivePriceData } from "../../hooks/use-live-price-data";
14-
import { usePriceFormatter } from "../../hooks/use-price-formatter";
15-
import { Cluster } from "../../services/pyth";
13+
import { useLivePriceData } from "../../../hooks/use-live-price-data";
14+
import { usePriceFormatter } from "../../../hooks/use-price-formatter";
15+
import { Cluster } from "../../../services/pyth";
1616

1717
type Props = {
1818
symbol: string;

0 commit comments

Comments
 (0)