File tree Expand file tree Collapse file tree 4 files changed +1514
-4
lines changed
src/app/team/[team_slug]/[project_slug]/transactions Expand file tree Collapse file tree 4 files changed +1514
-4
lines changed Original file line number Diff line number Diff line change 4545 "@radix-ui/react-slot" : " ^1.2.0" ,
4646 "@radix-ui/react-switch" : " ^1.1.4" ,
4747 "@radix-ui/react-tooltip" : " 1.2.0" ,
48+ "@scalar/api-reference-react" : " ^0.6.19" ,
4849 "@sentry/nextjs" : " 9.12.0" ,
4950 "@shazow/whatsabi" : " 0.21.0" ,
5051 "@tanstack/react-query" : " 5.72.1" ,
Original file line number Diff line number Diff line change 1+ "use client" ;
2+ import { ApiReferenceReact } from "@scalar/api-reference-react" ;
3+ import "@scalar/api-reference-react/style.css" ;
4+ import { THIRDWEB_ENGINE_CLOUD_URL } from "@/constants/env" ;
5+
16export default function TransactionsExplorerPage ( ) {
2- return < div > Explorer</ div > ;
7+ return (
8+ < div >
9+ < ApiReferenceReact
10+ configuration = { {
11+ url : `${ THIRDWEB_ENGINE_CLOUD_URL } /openapi` ,
12+ } }
13+ />
14+ </ div >
15+ ) ;
316}
Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ import { TabPathLinks } from "@/components/ui/tabs";
44import { CloudIcon } from "lucide-react" ;
55import Link from "next/link" ;
66import { redirect } from "next/navigation" ;
7- import { Badge } from "../../../../../ @/components/ui/badge" ;
8- import { THIRDWEB_ENGINE_CLOUD_URL } from "../../../../../ @/constants/env" ;
7+ import { Badge } from "@/components/ui/badge" ;
8+ import { THIRDWEB_ENGINE_CLOUD_URL } from "@/constants/env" ;
99
1010export default async function Page ( props : {
1111 params : Promise < { team_slug : string ; project_slug : string } > ;
You can’t perform that action at this time.
0 commit comments