Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
schnetzlerjoe committed Sep 7, 2023
1 parent 63d7f1d commit cb52a7f
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 0 additions & 11 deletions packages/ui/src/components/Balance.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -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%;
}
}
</style>

0 comments on commit cb52a7f

Please sign in to comment.