Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tmm committed Aug 18, 2023
1 parent 58060d1 commit c4f232c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions playgrounds/vite-core/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Account() {
</div>

{account.status === 'connected' && (
<button type='button' onClick={() => disconnect(config)}>
<button type="button" onClick={() => disconnect(config)}>
Disconnect
</button>
)}
Expand All @@ -81,7 +81,7 @@ function Connect() {
id={connector.uid}
key={connector.uid}
onClick={async () => await connect(config, { connector })}
type='button'
type="button"
>
{connector.name}
</button>
Expand Down Expand Up @@ -112,7 +112,7 @@ function SwitchAccount() {
id={connector.uid}
key={connector.uid}
onClick={async () => await switchAccount(config, { connector })}
type='button'
type="button"
>
{connector.name}
</button>
Expand Down Expand Up @@ -169,7 +169,7 @@ function BlockNumber() {
>()

React.useEffect(() => {
;(async () => {
const _ = (async () => {
setBlockNumber(await getBlockNumber(config))

watchBlockNumber(config, { onBlockNumber: setBlockNumber })
Expand Down

1 comment on commit c4f232c

@vercel
Copy link

@vercel vercel bot commented on c4f232c Aug 18, 2023

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:

wagmi-v2 – ./docs

wagmi-v2-git-alpha-wagmi-dev.vercel.app
wagmi-v2-wagmi-dev.vercel.app
alpha.wagmi.sh
wagmi-v2.vercel.app

Please sign in to comment.