Skip to content

Commit

Permalink
feat(apps/web): Hide icon and copy button for address in breadcrumbs
Browse files Browse the repository at this point in the history
  • Loading branch information
nevendyulgerov committed Jan 30, 2025
1 parent 2c171d6 commit 5f9d2b1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 1 addition & 2 deletions apps/web/src/app/applications/[address]/inputs/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ const ApplicationInputsPage: FC<ApplicationInputsPageProps> = async (props) => {
value={params.address as AddressType}
href={`/applications/${params.address}`}
shorten
icon
mr={-8}
canCopy={false}
/>
<Text>Inputs</Text>
</Breadcrumbs>
Expand Down
6 changes: 5 additions & 1 deletion apps/web/src/app/applications/[address]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@ const ApplicationPage: FC<ApplicationPageProps> = async (props) => {
},
]}
>
<Address value={params.address as AddressType} icon shorten />
<Address
value={params.address as AddressType}
shorten
canCopy={false}
/>
</Breadcrumbs>

<PageTitle title="Summary" Icon={TbStack2} />
Expand Down

0 comments on commit 5f9d2b1

Please sign in to comment.