Skip to content

Commit

Permalink
add tokens modal 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 e3ed541 commit d967812
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ const props = defineProps<{
network: Network;
}>();
const emit = defineEmits(['close', 'tokenAddress']);
const emit = defineEmits<{
close: [];
tokenAddress: [tokenAddress: string];
}>();
const searchInput = ref('');
const showUnverifiedTokens = ref(false);
Expand Down Expand Up @@ -87,6 +90,7 @@ function handleTokenClick(token) {
<div class="space-y-2">
<div class="space-y-2">
<TuneCheckbox
id="show-unverified-tokens"
v-model="showUnverifiedTokens"
hint="Show unverified tokens"
name="searchOnlyWithReason"
Expand Down

0 comments on commit d967812

Please sign in to comment.