Skip to content

Commit a8bd486

Browse files
committed
Fix spinner, remove logs
1 parent 432d697 commit a8bd486

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

packages/core/src/utils.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,8 @@ export function isUrl(str: string): boolean {
5050
try {
5151
url = new URL(str)
5252
} catch (_) {
53-
console.log(false)
5453
return false
5554
}
56-
console.log(url.protocol === 'http:' || url.protocol === 'https:')
55+
5756
return url.protocol === 'http:' || url.protocol === 'https:'
5857
}

packages/core/src/views/shared/Spinner.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
font-size: inherit;
3131
display: block;
3232
position: absolute;
33-
outline: 3px solid;
33+
border: 3px solid;
3434
border-radius: 50%;
3535
animation: bn-loading 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
3636
border-color: currentColor transparent transparent transparent;

packages/walletconnect/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ function walletConnect(options?: WalletConnectOptions): WalletInit {
175175

176176
// @ts-ignore
177177
if (method === 'eth_signTransaction') {
178-
console.log({ params })
179178
// @ts-ignore
180179
return this.connector.signTransaction(params[0])
181180
}

0 commit comments

Comments
 (0)