Skip to content

Commit

Permalink
Merge pull request #1239 from rainlanguage/Fix-paste-not-refreshing-t…
Browse files Browse the repository at this point in the history
…okens
  • Loading branch information
hardyjosh authored Feb 6, 2025
2 parents 8cdaa81 + 47c364e commit b72d0f4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
let checking = false;
function checkIfAllTokensAreSelected() {
allTokensSelected = false;
if (selectTokens?.every((t) => gui?.isSelectTokenSet(t))) {
allTokensSelected = true;
} else {
Expand Down Expand Up @@ -54,8 +55,8 @@
error = errorMessage;
}
}
checking = false;
checkIfAllTokensAreSelected();
checking = false;
}
</script>

Expand Down

0 comments on commit b72d0f4

Please sign in to comment.