Skip to content

Commit

Permalink
Update page.tsx
Browse files Browse the repository at this point in the history
It might be 64-Hex.
So,
changing it from 
0x0000000000000000000000000000000000000000
to
0x0000000000000000000000000000000000000000000000000000000000000000
  • Loading branch information
sighttview authored Feb 27, 2025
1 parent 2fffd9e commit b5dd20b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ type PageProps = {

export function generateStaticParams() {
// An workaround to enable static exports in Next.js, generating single dummy page.
return [{ txHash: "0x0000000000000000000000000000000000000000" }];
// return [{ txHash: "0x0000000000000000000000000000000000000000" }];
return [{ txHash: "0x0000000000000000000000000000000000000000000000000000000000000000" }];
}
const TransactionPage: NextPage<PageProps> = ({ params }: PageProps) => {
const txHash = params?.txHash as Hash;
Expand Down

0 comments on commit b5dd20b

Please sign in to comment.