From e92aaffc94dbb3c0115a67496d20e0c0708b40f2 Mon Sep 17 00:00:00 2001 From: MaysWind Date: Mon, 27 Jan 2025 00:16:42 +0800 Subject: [PATCH] make currency property required --- src/components/desktop/AmountInput.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/desktop/AmountInput.vue b/src/components/desktop/AmountInput.vue index 85135df7..83dc442f 100644 --- a/src/components/desktop/AmountInput.vue +++ b/src/components/desktop/AmountInput.vue @@ -43,7 +43,7 @@ const props = defineProps<{ class?: string; color?: string; density?: string; - currency?: string; + currency: string; showCurrency?: boolean; label?: string; placeholder?: string;