Skip to content

Commit

Permalink
revert: 5070579
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjason89 committed Aug 14, 2023
1 parent f4258c0 commit 1c38aa3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion components/bsx/input/TokenBalanceInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<script setup lang="ts">
import BasicBalanceInput from '@/components/shared/form/BasicBalanceInput.vue'
const balanceInputComponent = ref<BasicBalanceInput>()
const emit = defineEmits(['input'])
const props = defineProps({
Expand All @@ -28,4 +28,8 @@ const { assets } = usePrefix()
const asset = computed(() => assets(props.tokenId))
const unit = computed(() => asset.value.symbol)
const decimals = computed(() => asset.value.decimals)
function checkValidity() {
return balanceInputComponent.value?.checkValidity()
}
</script>

0 comments on commit 1c38aa3

Please sign in to comment.