Skip to content

Commit

Permalink
fix: data types
Browse files Browse the repository at this point in the history
  • Loading branch information
simonas-notcat committed Nov 1, 2024
1 parent c32ba3e commit a283cb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/snap/snap.manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://github.com/0xIntuition/intuition-snap.git"
},
"source": {
"shasum": "eZnO7eThStYhzmGn7N9RauFyD2dxdY92HbgcW1gxiOk=",
"shasum": "Ux0oJ1EpDVY0lCjUvnuuQXXJ1dVdulBx0IQyS0HkzwI=",
"location": {
"npm": {
"filePath": "dist/bundle.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/snap/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export const renderAccounts = async (i7nAccountsData: {
const triples = acc.data.account.atom.asSubject.map((triple: any) => {
return (
<Box direction='horizontal' alignment='space-between'>
<Text>{triple.predicate.id === 4 ? triple.predicate.emoji : triple.predicate.label} {triple.object.label}</Text>
<Text>{triple.predicate.id === '4' ? triple.predicate.emoji : triple.predicate.label} {triple.object.label}</Text>
<Text>{triple.vault?.positionCount.toString()}</Text>
</Box>
)
Expand Down

0 comments on commit a283cb6

Please sign in to comment.