Skip to content

Commit

Permalink
Merge pull request #291 from hyperlane-xyz/ltyu/renzo-sei-taiko
Browse files Browse the repository at this point in the history
feat: Version update for SDK and Registry
  • Loading branch information
ltyu authored Oct 16, 2024
2 parents f285b81 + d6a1030 commit 1f1be7f
Show file tree
Hide file tree
Showing 4 changed files with 211 additions and 46 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@headlessui/react": "^1.7.14",
"@hyperlane-xyz/registry": "4.6.0",
"@hyperlane-xyz/sdk": "5.3.0",
"@hyperlane-xyz/utils": "5.3.0",
"@hyperlane-xyz/widgets": "5.3.0",
"@hyperlane-xyz/registry": "4.8.1",
"@hyperlane-xyz/sdk": "5.5.0",
"@hyperlane-xyz/utils": "5.5.0",
"@hyperlane-xyz/widgets": "5.5.0",
"@interchain-ui/react": "^1.23.28",
"@metamask/jazzicon": "https://github.com/jmrossy/jazzicon#7a8df28974b4e81129bfbe3cab76308b889032a6",
"@metamask/post-message-stream": "6.1.2",
Expand Down
2 changes: 1 addition & 1 deletion src/components/icons/Identicon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function _Identicon({ address, size: _size }: Props) {

// TODO better handling of non-evm addresses here
if (!address || !isValidAddressEvm(address)) {
return <Circle size={size} classes="bg-primary-500" title="" />;
return <Circle size={size} className="bg-primary-500" title="" />;
}

const jazziconResult = jazzicon(size, addressToSeed(address));
Expand Down
4 changes: 2 additions & 2 deletions src/components/icons/WideChevron.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import { WideChevron as WideChevronInner } from '@hyperlane-xyz/widgets';

import { Color } from '../../styles/Color';

export function WideChevron({ classes }: { classes?: string }) {
export function WideChevron({ className }: { className?: string }) {
return (
<WideChevronInner
width="16"
height="100%"
direction="e"
color={Color.lightGray}
classes={classes}
className={className}
rounded={true}
/>
);
Expand Down
Loading

0 comments on commit 1f1be7f

Please sign in to comment.