Skip to content

Commit

Permalink
narrow down to state transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
karooolis committed Oct 16, 2024
1 parent eb1c954 commit d44343d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export type ObservedTransaction = {

export function useObservedTransactions() {
const { worldAddress } = useParams();
const { transactions } = useStore(worldStore);
const transactions = useStore(worldStore, (state) => state.transactions);
const observerWrites = useStore(observerStore, (state) => state.writes);

const mergedTransactions = useMemo((): ObservedTransaction[] => {
Expand Down

0 comments on commit d44343d

Please sign in to comment.