From 28f14ad68e44f6ef35ccf077c79cf196c79ea42c Mon Sep 17 00:00:00 2001
From: sealday <zhanglin@daoyoucloud.com>
Date: Fri, 17 May 2024 21:31:22 +0800
Subject: [PATCH] fix: homepage (#1011)

Reviewed-on: https://git.daoyoucloud.com/daoyoucloud/tachybase/pulls/1011
---
 packages/plugins/@hera/plugin-core/src/server/plugin.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/packages/plugins/@hera/plugin-core/src/server/plugin.ts b/packages/plugins/@hera/plugin-core/src/server/plugin.ts
index 8ee599896..01ed213b0 100644
--- a/packages/plugins/@hera/plugin-core/src/server/plugin.ts
+++ b/packages/plugins/@hera/plugin-core/src/server/plugin.ts
@@ -4,7 +4,6 @@ import CalcField from './fields/calc';
 import { SqlLoader } from './services/sql-loader';
 import { ConnectionManager } from './services/connection-manager';
 import { FontManager } from './services/font-manager';
-import { HomePageService } from '../../../plugin-homepage/src/server/home-page-service';
 import { WebControllerService as WebService } from './services/web-service';
 import './actions';
 import { Container } from '@tachybase/utils';
@@ -48,7 +47,6 @@ export class PluginCoreServer extends Plugin {
   }
   async install(options?: InstallOptions) {
     await this.pluginDepartments.install(options);
-    await Container.get(HomePageService).install();
   }
   async afterEnable() {}
   async afterDisable() {}