From 766267961cc0f53454be62a70c27c9179fd0de44 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Mon, 30 Jan 2023 12:01:00 -0900 Subject: [PATCH] fix import error (#2082) --- frontend/vuetify.options.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/vuetify.options.js b/frontend/vuetify.options.js index d065de57874c..50b15535ea94 100644 --- a/frontend/vuetify.options.js +++ b/frontend/vuetify.options.js @@ -1,8 +1,11 @@ -import * as locale from "vuetify/src/locale"; +import * as locale from "vuetify/lib/locale"; + +// Ensure not null or undefined +if (!locale || !locale.en) { + throw new Error("Vuetify locale not found"); +} export default { - breakpoint: {}, - icons: {}, lang: { locales: { "el-GR": locale.el,