Skip to content

Commit

Permalink
Patch State
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Sep 2, 2024
1 parent 0183a50 commit 89b5fd2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,10 @@ export const App = () => {

const decodedTransactions = useMemo(
() =>
data?.items.map(decodeTransaction).filter(Boolean) as
data &&
(data?.items.map(decodeTransaction).filter(Boolean) as
| AllMultiReturnTypes[]
| undefined,
| undefined),
[data]
);

Expand Down

0 comments on commit 89b5fd2

Please sign in to comment.