Skip to content

Commit

Permalink
use native token as default selected token
Browse files Browse the repository at this point in the history
  • Loading branch information
gsteenkamp89 committed Feb 22, 2024
1 parent c60c1de commit 01adf93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const selectedTokenAddress = ref<Token['address']>(
const selectedToken = computed(
() =>
tokens.value.find(token => token.address === selectedTokenAddress.value) ??
tokens.value.find(token => !token.address) ??
tokens.value.find(token => token.address === 'main') ??
tokens.value[0]
);
Expand Down

0 comments on commit 01adf93

Please sign in to comment.