Skip to content

Commit 2ed3be2

Browse files
committed
Move /analytics contract page in app router folder (no code change) (#5046)
## Problem solved Short description of the bug fixed or feature added <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on updating the import path for the `ContractAnalyticsPage` component in the `page.tsx` file located in the analytics tab of the dashboard. It simplifies the import by using a relative path. ### Detailed summary - Changed the import path for `ContractAnalyticsPage` from a long relative path to a simplified relative import (`"./ContractAnalyticsPage"`). - No other significant changes are noted in the diff. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent 0159983 commit 2ed3be2

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

apps/dashboard/src/app/(dashboard)/(chain)/[chain_id]/[contractAddress]/analytics/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { notFound, redirect } from "next/navigation";
2-
import { ContractAnalyticsPage } from "../../../../../../contract-ui/tabs/analytics/page";
32
import { getContractPageParamsInfo } from "../_utils/getContractFromParams";
43
import { getContractPageMetadata } from "../_utils/getContractPageMetadata";
4+
import { ContractAnalyticsPage } from "./ContractAnalyticsPage";
55

66
export default async function Page(props: {
77
params: {

0 commit comments

Comments
 (0)