Skip to content

Commit

Permalink
fix: fix disconnect error #84
Browse files Browse the repository at this point in the history
  • Loading branch information
fredliang44 committed Dec 29, 2022
1 parent 5302225 commit caf57d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@suiet/wallet-kit",
"version": "0.1.11",
"version": "0.1.12",
"type": "module",
"files": [
"dist"
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/src/components/WalletInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function WalletInfo(props: ConnectButtonProps) {
<div className={"wkit-connected-button__divider"}></div>
<div className={"wkit-address-select"}>
<span className={"wkit-address-select__address"}>
{addressEllipsis((account as WalletAccount).address)}
{addressEllipsis((account as WalletAccount)?.address)}
</span>
<span className={"wkit-address-select__right-arrow"}>
<SvgArrowDown />
Expand Down

2 comments on commit caf57d9

@vercel
Copy link

@vercel vercel bot commented on caf57d9 Dec 29, 2022

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

wallet-kit-demo – ./examples/with-vite

wallet-kit-demo-suiet.vercel.app
wallet-kit-demo-git-main-suiet.vercel.app
wallet-kit-demo.vercel.app

@vercel
Copy link

@vercel vercel bot commented on caf57d9 Dec 29, 2022

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

wallet-kit – ./website

wallet-kit.vercel.app
kit.suiet.app
wallet-kit-oasislab.vercel.app
wallet-kit-git-main-oasislab.vercel.app

Please sign in to comment.