Skip to content

Commit

Permalink
feat: Add a path to the Realm Details page (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinoosss committed Aug 23, 2023
1 parent 1dafd8b commit 81f0e52
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/pages/realms/[address].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ interface RealmsDetailsPageProps {
}

const RealmsAddressDetails = ({path}: RealmsDetailsPageProps) => (
<DetailsPageLayout
title={'Realm Details'}
visible={false}
keyword={`${path}`}
error={true}></DetailsPageLayout>
<DetailsPageLayout title={'Realm Details'} visible={false} keyword={`${path}`} error={true}>
<div></div>
</DetailsPageLayout>
);

export async function getServerSideProps({params}: any) {
Expand Down

0 comments on commit 81f0e52

Please sign in to comment.