From df40166a603f9f2ac17ea3f085615cd90fcfadb9 Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Mon, 29 Dec 2025 22:49:31 +0000 Subject: [PATCH] fix: remove unused LuaUIComponent type import in loadLuaUIPackage --- frontends/nextjs/src/lib/lua/ui/load-lua-ui-package.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontends/nextjs/src/lib/lua/ui/load-lua-ui-package.ts b/frontends/nextjs/src/lib/lua/ui/load-lua-ui-package.ts index 165410c6e..c44683f87 100644 --- a/frontends/nextjs/src/lib/lua/ui/load-lua-ui-package.ts +++ b/frontends/nextjs/src/lib/lua/ui/load-lua-ui-package.ts @@ -5,7 +5,7 @@ import { createLuaEngine } from '@/lib/lua/engine/core/create-lua-engine' import { pushToLua } from '@/lib/lua/functions/converters/push-to-lua' import { fromLua } from '@/lib/lua/functions/converters/from-lua' import { normalizeLuaComponent } from './normalize-lua-structure' -import type { LuaUIManifest, LuaUIPackage, LuaUIPage, LuaUIComponent } from './types/lua-ui-package' +import type { LuaUIManifest, LuaUIPackage, LuaUIPage } from './types/lua-ui-package' const lua = fengari.lua const lauxlib = fengari.lauxlib