From e7058dfd0035aaeef062abb479148eb7a06ae177 Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Wed, 2 Aug 2023 19:12:19 -0700 Subject: [PATCH] refactor: clean up i18n host unused props --- components/I18nHost.ce.vue | 7 ------- 1 file changed, 7 deletions(-) diff --git a/components/I18nHost.ce.vue b/components/I18nHost.ce.vue index b7ee764b1..ba53a5503 100644 --- a/components/I18nHost.ce.vue +++ b/components/I18nHost.ce.vue @@ -36,13 +36,6 @@ const i18n = createI18n({ }); provide(I18nInjectionKey, i18n); - -export interface Props { - locale?: string; -} -withDefaults(defineProps(), { - locale: defaultLocale, -});