Skip to content

Commit

Permalink
add home url
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennievon committed Dec 18, 2023
1 parent 6de440a commit c809bbb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tools/obscuroscan_v3/frontend/pages/address/[address].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@ import { useRouter } from "next/router";
import React from "react";

const AddressDetails = () => {
// const { query } = useRouter();
// const { address } = query;
const { push } = useRouter();

return (
<Layout>
<EmptyState
title="Address Details"
description="Coming soon..."
image="/assets/images/clock.png"
action={<Button>Go Home</Button>}
action={<Button onClick={() => push("/")}>Go Home</Button>}
/>
</Layout>
);
Expand Down

0 comments on commit c809bbb

Please sign in to comment.