diff --git a/tools/obscuroscan_v3/frontend/pages/batches/[hash].tsx b/tools/obscuroscan_v3/frontend/pages/batches/[hash].tsx index 5f5ed3d4ac..1e8d2e29a8 100644 --- a/tools/obscuroscan_v3/frontend/pages/batches/[hash].tsx +++ b/tools/obscuroscan_v3/frontend/pages/batches/[hash].tsx @@ -1,6 +1,6 @@ import { fetchBatchByHash } from "@/api/batches"; import Layout from "@/src/components/layouts/default-layout"; -import { BatchDetails } from "@/src/components/modules/batches/batch-details"; +import { BatchDetailsComponent } from "@/src/components/modules/batches/batch-details"; import { Card, CardHeader, @@ -36,7 +36,7 @@ export default function Batch() { - + ) : ( diff --git a/tools/obscuroscan_v3/frontend/src/components/layouts/footer.tsx b/tools/obscuroscan_v3/frontend/src/components/layouts/footer.tsx index 44798d2cd8..8b2d0f52b5 100644 --- a/tools/obscuroscan_v3/frontend/src/components/layouts/footer.tsx +++ b/tools/obscuroscan_v3/frontend/src/components/layouts/footer.tsx @@ -4,6 +4,7 @@ import { TwitterLogoIcon, DiscordLogoIcon, } from "@radix-ui/react-icons"; +import Link from "next/link"; export default function Footer() { return ( @@ -30,18 +31,18 @@ export default function Footer() {
- Privacy - - + Terms - +
Version: {version}
diff --git a/tools/obscuroscan_v3/frontend/src/components/modules/batches/batch-details.tsx b/tools/obscuroscan_v3/frontend/src/components/modules/batches/batch-details.tsx index d26226cdb6..a5f2903353 100644 --- a/tools/obscuroscan_v3/frontend/src/components/modules/batches/batch-details.tsx +++ b/tools/obscuroscan_v3/frontend/src/components/modules/batches/batch-details.tsx @@ -1,9 +1,9 @@ import { Separator } from "@/src/components/ui/separator"; import TruncatedAddress from "../common/truncated-address"; -import { BatchDetails } from "@/src/types/interfaces/BatchInterfaces"; import KeyValueItem, { KeyValueList } from "@/src/components/ui/key-value"; import { formatTimeAgo } from "@/src/lib/utils"; import { Badge } from "@/src/components/ui/badge"; +import { BatchDetails } from "@/src/types/interfaces/BatchInterfaces"; export function BatchDetailsComponent({ batchDetails, diff --git a/tools/obscuroscan_v3/frontend/src/components/modules/personal/index.tsx b/tools/obscuroscan_v3/frontend/src/components/modules/personal/index.tsx index 5d1e31ccb4..103dfcbe88 100644 --- a/tools/obscuroscan_v3/frontend/src/components/modules/personal/index.tsx +++ b/tools/obscuroscan_v3/frontend/src/components/modules/personal/index.tsx @@ -27,6 +27,7 @@ export default function PersonalTransactions() { columns={columns} data={personalTxns?.Results} toolbar={toolbar} + total={personalTxns?.Total} /> ) : (

No transactions found.