From 3c1a9db3a508c8a3aa0d3c009453243a90c996d3 Mon Sep 17 00:00:00 2001 From: Benjamin Singleton <19498453+tetrogem@users.noreply.github.com> Date: Sat, 14 Jun 2025 12:07:36 -0500 Subject: [PATCH] fix: removed unnecessary reactive call --- apps/vdn-static/src/i18n/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/vdn-static/src/i18n/index.ts b/apps/vdn-static/src/i18n/index.ts index 5aed7c7..b83ac78 100644 --- a/apps/vdn-static/src/i18n/index.ts +++ b/apps/vdn-static/src/i18n/index.ts @@ -1,6 +1,6 @@ import en_US from "../locales/en_US"; import vp_VL from "../locales/vp_VL"; -import { computed, reactive, readonly, ref } from "vue"; +import { computed, readonly, ref } from "vue"; import type { Locale } from "./locale"; export const LOCALE_IDS = ["en_US", "vp_VL"] as const; @@ -18,7 +18,7 @@ export function useLocale(opt: UseLocaleOptions = {}) { ); }); - return readonly(reactive(locale)); + return readonly(locale); } export interface UseLocaleOptions {