From ce12097ddf77b749b6a0884ea4b44e6c13ddef81 Mon Sep 17 00:00:00 2001 From: manu Date: Mon, 15 Jul 2024 15:33:46 +0200 Subject: [PATCH] Remove unused Avatar import The Avatar component from 'antd' was removed from app.tsx in the SquirrelServersManager client as it is not being used in the code. This makes the code cleaner and easier to maintain. --- client/src/app.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client/src/app.tsx b/client/src/app.tsx index 96e0f77f..fc422bae 100644 --- a/client/src/app.tsx +++ b/client/src/app.tsx @@ -11,7 +11,6 @@ import type { Settings as LayoutSettings } from '@ant-design/pro-components'; import { SettingDrawer } from '@ant-design/pro-components'; // @ts-ignore import { history, RunTimeLayoutConfig } from '@umijs/max'; -import { Avatar } from 'antd'; import { API } from 'ssm-shared-lib'; import defaultSettings from '../config/defaultSettings'; import Logo from '../public/logo.svg';