diff --git a/client/components/forms/PhoneInput.vue b/client/components/forms/PhoneInput.vue index fd24784e..0673435d 100644 --- a/client/components/forms/PhoneInput.vue +++ b/client/components/forms/PhoneInput.vue @@ -124,6 +124,8 @@ export default { watch: { inputVal: { handler(val) { + if (!this.selectedCountryCode) return + if (val && val.startsWith("0")) { val = val.substring(1) }