Skip to content

Commit

Permalink
Merge pull request #238 from TokenScript/fix/hb-passive
Browse files Browse the repository at this point in the history
hb passive fix
  • Loading branch information
nicktaras authored Aug 10, 2023
2 parents 7d7c340 + ef8f5bb commit aa6982f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hotel-bogota-passive-negotiation-website/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ function App() {
let tokens = [];
if (issuerTokens) {
tokenIssuers.forEach((issuer) => {
tokens.push(...issuerTokens[issuer.collectionID].tokens);
tokens.push(
...issuerTokens.selectedTokens[issuer.collectionID].tokens
);
});
}
setTokens(tokens);
Expand Down

0 comments on commit aa6982f

Please sign in to comment.