Skip to content

Commit

Permalink
Merge pull request #258 from alleslabs/fix/admin-address-type-text
Browse files Browse the repository at this point in the history
fix(components): fix admin address type text render
  • Loading branch information
poomthiti committed Mar 30, 2023
2 parents f4a32bc + a929e92 commit d3b3375
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#258](https://github.com/alleslabs/celatone-frontend/pull/258) Fix address type render for contract admin address
- [#253](https://github.com/alleslabs/celatone-frontend/pull/253) Fix public code logo shown when switching from mainnet to testnet
- [#248](https://github.com/alleslabs/celatone-frontend/pull/248) Fix table padding bottom for editable cells
- [#241](https://github.com/alleslabs/celatone-frontend/pull/241) Fix NAToken size
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,9 @@ export const InstantiateInfo = ({

<LabelText
label="Admin Address"
helperText1={instantiateInfo.admin ? adminType : undefined}
helperText1={
instantiateInfo.admin ? getAddressTypeText(adminType) : undefined
}
>
{instantiateInfo.admin ? (
<ExplorerLink
Expand Down

2 comments on commit d3b3375

@vercel
Copy link

@vercel vercel bot commented on d3b3375 Mar 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d3b3375 Mar 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.