From a879b404b6893856b0e2ad822921b7652d7c616f Mon Sep 17 00:00:00 2001 From: zhangheng Date: Tue, 28 Apr 2026 18:08:20 +0800 Subject: [PATCH] fix(common): add lidar --- components/layout/common.ts | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/components/layout/common.ts b/components/layout/common.ts index f2e5fb9..967c811 100644 --- a/components/layout/common.ts +++ b/components/layout/common.ts @@ -86,16 +86,13 @@ const currentComponentList: MenuItem[] = [ }, ] -const lidarList: MenuItem[] = - process.env.NEXT_PUBLIC_ENV === "production" - ? [] - : [ - { - title: "点云标注", - url: "lidar", - icon: "LidarAnnotationIcon", - }, - ] +const lidarList: MenuItem[] = [ + { + title: "点云标注", + url: "lidar", + icon: "LidarAnnotationIcon", + }, +] export const componentList: MenuItem[] = [ ...currentComponentList,