Skip to content

Commit

Permalink
Rebase onto yana/node-page
Browse files Browse the repository at this point in the history
  • Loading branch information
yanok87 committed Dec 20, 2024
1 parent dee15b2 commit 3f2b57d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 84 deletions.
2 changes: 1 addition & 1 deletion explorer-nextjs/src/app/account/[address]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default async function Account({
{
label: "Account",
isSelected: true,
link: "/account/1",
link: `/account/${address}`,
},
]}
/>
Expand Down
80 changes: 0 additions & 80 deletions explorer-nextjs/src/app/account/[id]/page.tsx

This file was deleted.

8 changes: 5 additions & 3 deletions explorer-nextjs/src/app/nym-node/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ export default async function NymNode({
return null;
}

const ownerAccount = nodeBondInfo[0].bond_information.owner;

return (
<ContentLayout>
<Grid2 container columnSpacing={5} rowSpacing={5}>
Expand All @@ -49,7 +47,11 @@ export default async function NymNode({
<SectionHeading title="Nym Node Details" />
<ExplorerButtonGroup
options={[
{ label: "Nym Node", isSelected: true, link: "/nym-node/1" },
{
label: "Nym Node",
isSelected: true,
link: `/nym-node/${id}`,
},
{
label: "Account",
isSelected: false,
Expand Down

0 comments on commit 3f2b57d

Please sign in to comment.