diff --git a/components/CreateInterestModal.vue b/components/CreateInterestModal.vue index 35d5abf..22995a2 100644 --- a/components/CreateInterestModal.vue +++ b/components/CreateInterestModal.vue @@ -76,14 +76,13 @@ > - @@ -313,6 +312,7 @@ + + diff --git a/plugins/v-phone-input.client.ts b/plugins/v-phone-input.client.ts deleted file mode 100644 index 98e2e3b..0000000 --- a/plugins/v-phone-input.client.ts +++ /dev/null @@ -1,13 +0,0 @@ -import { defineNuxtPlugin } from '#app' -import { createVPhoneInput } from 'v-phone-input' -import 'v-phone-input/dist/v-phone-input.css' - -export default defineNuxtPlugin((nuxtApp) => { - const vPhoneInput = createVPhoneInput({ - defaultCountry: 'US', - preferredCountries: ['US', 'FR', 'ES', 'PT', 'GB'], - enableSearchingCountry: true, - }) - - nuxtApp.vueApp.use(vPhoneInput) -})