+
{{ client }}
@@ -191,8 +190,9 @@ watch($$(activeLang), (newLang) => {
+
diff --git a/packages/nc-gui-v2/components/smartsheet/Grid.vue b/packages/nc-gui-v2/components/smartsheet/Grid.vue
index c7297f9f92..2f20a0e71a 100644
--- a/packages/nc-gui-v2/components/smartsheet/Grid.vue
+++ b/packages/nc-gui-v2/components/smartsheet/Grid.vue
@@ -9,7 +9,6 @@ import {
IsFormInj,
IsGridInj,
IsLockedInj,
- IsPublicInj,
MetaInj,
OpenNewRecordFormHookInj,
PaginationDataInj,
@@ -37,8 +36,6 @@ const meta = inject(MetaInj)
const view = inject(ActiveViewInj)
-const isPublicView = inject(IsPublicInj, ref(false))
-
// keep a root fields variable and will get modified from
// fields menu and get used in grid and gallery
const fields = inject(FieldsInj, ref([]))
diff --git a/packages/nc-gui-v2/nuxt.config.ts b/packages/nc-gui-v2/nuxt.config.ts
index 351ab5ed99..1ccb9f0cf2 100644
--- a/packages/nc-gui-v2/nuxt.config.ts
+++ b/packages/nc-gui-v2/nuxt.config.ts
@@ -50,7 +50,7 @@ export default defineNuxtConfig({
vite: {
// todo: minifiy again
build: {
- minify: false
+ minify: false,
},
plugins: [
vueI18n({
@@ -79,8 +79,7 @@ export default defineNuxtConfig({
],
define: {
'process.env.DEBUG': 'false',
- 'process.nextTick': () => {
- },
+ 'process.nextTick': () => {},
},
server: {
watch: {
@@ -100,9 +99,7 @@ export default defineNuxtConfig({
global: 'globalThis',
},
// Enable esbuild polyfill plugins
- plugins: [
- NodeModulesPolyfillPlugin(),
- ],
+ plugins: [NodeModulesPolyfillPlugin()],
},
},
},