Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
ezynda3 committed Sep 11, 2024
1 parent dbce4e2 commit c3ce9db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/routes/diamond/[address]/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const buildFacet = async (
}

const fileredAbi: Abi = facet.abi.filter((item) => {
if (item.type !== 'function') return true
if (item.type !== 'function') return false
if (!item.outputs) {
item.outputs = []
}
Expand Down
2 changes: 1 addition & 1 deletion src/routes/diamond/[address]/json/+server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const buildFacet = async (
}

const fileredAbi: Abi = facet.abi.filter((item) => {
if (item.type !== 'function') return true
if (item.type !== 'function') return false
if (!item.outputs) {
item.outputs = []
}
Expand Down

0 comments on commit c3ce9db

Please # to comment.