diff --git a/README.md b/README.md index fe5f1c3..510ba73 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ yarn run dev ## Install & Initialize ```javascript // Check if the Snap is installed -await window.ethereum.request({ method: 'wallet_getSnaps' }); +let result = await window.ethereum.request({ method: 'wallet_getSnaps' }); const installed = Object.keys(result).includes("npm:@cosmsnap/snap"); // Install Snap diff --git a/packages/snap/README.md b/packages/snap/README.md index 14b335e..2207f6c 100644 --- a/packages/snap/README.md +++ b/packages/snap/README.md @@ -10,7 +10,7 @@ Your contributions are always welcome! Please have a look at the [contribution g ## Install & Initialize ```javascript // Check if the Snap is installed -await window.ethereum.request({ method: 'wallet_getSnaps' }); +let result = await window.ethereum.request({ method: 'wallet_getSnaps' }); const installed = Object.keys(result).includes("npm:@cosmsnap/snap"); // Install Snap diff --git a/packages/ui/src/components/Balance.svelte b/packages/ui/src/components/Balance.svelte index 0067231..0933e21 100644 --- a/packages/ui/src/components/Balance.svelte +++ b/packages/ui/src/components/Balance.svelte @@ -207,15 +207,4 @@ min-width: 18px; margin-left: 15px; } - -.frame-33:hover { - width: max-content; - z-index: 100; -} - -@media (max-width: 1024px) { - .frame-33:hover { - width: 100%; - } -} \ No newline at end of file