fix error files caused during vercel build step

This commit is contained in:
RcleydsonR
2022-12-16 17:49:43 -03:00
parent c4b74309cc
commit 150a325bdc
4 changed files with 9 additions and 11 deletions

View File

@@ -3,10 +3,10 @@ import CustomButton from "@/components/CustomButton.vue";
import blockchain from "../utils/blockchain";
// props
const props = defineProps({
lastWalletReleaseTransactions: Array,
tokenAmount: Number,
});
const props = defineProps<{
lastWalletReleaseTransactions: any[] | undefined;
tokenAmount: Number | undefined;
}>();
// Emits
const emit = defineEmits(["makeAnotherTransaction"]);