Skip to content

Commit

Permalink
add tokens modal item types
Browse files Browse the repository at this point in the history
Signed-off-by: ryanwolhuter <[email protected]>
  • Loading branch information
ryanwolhuter committed Oct 13, 2023
1 parent d967812 commit 1a71938
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ const props = defineProps<{
network: string;
}>();
const emit = defineEmits(['select']);
const emit = defineEmits<{
select: [token: Token];
}>();
const { formatNumber, getNumberFormatter } = useIntl();
const { copyToClipboard } = useCopy();
const exploreUrl = computed(() => {
return explorerUrl(props.network, props.token.address);
Expand Down Expand Up @@ -73,4 +74,3 @@ const exploreUrl = computed(() => {
</div>
</button>
</template>
../../types/types

0 comments on commit 1a71938

Please sign in to comment.