Skip to content

Commit

Permalink
fix(client): manifest check (#1478)
Browse files Browse the repository at this point in the history
* fix(client): fix manifest checking

* chore: changesets
  • Loading branch information
VanishMax authored Jul 16, 2024
1 parent b49e186 commit ab09596
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/small-queens-drum.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@penumbra-zone/client': patch
---

fix manifest checking function
2 changes: 1 addition & 1 deletion packages/client/src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ export const isPenumbraManifest = (mf: unknown): mf is PenumbraManifest =>
typeof mf.icons === 'object' &&
mf.icons !== null &&
'128' in mf.icons &&
mf.icons['128'] === 'string';
typeof mf.icons['128'] === 'string';

0 comments on commit ab09596

Please sign in to comment.