fix(admin-client): remove unused imports in llm-gateway components

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-02-25 23:13:40 -08:00
parent cb8133585d
commit 0114e9896d
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
import { useState } from 'react';
import { Table, Button, Modal, Form, Input, InputNumber, Switch, Space, Tag, Popconfirm, Typography, message as antMsg } from 'antd';
import { PlusOutlined, CopyOutlined } from '@ant-design/icons';
import { Table, Button, Modal, Form, Input, InputNumber, Switch, Popconfirm, Typography } from 'antd';
import { PlusOutlined } from '@ant-design/icons';
import { useApiKeys, useCreateKey, useDeleteKey, useToggleKey } from '../../application/useLLMGateway';
import type { GatewayApiKey } from '../../infrastructure/llm-gateway.api';

View File

@ -1,5 +1,5 @@
import { useState } from 'react';
import { Table, Button, Modal, Form, Input, Select, Switch, Space, Popconfirm, Tag } from 'antd';
import { Table, Button, Modal, Form, Input, Select, Switch, Popconfirm, Tag } from 'antd';
import { PlusOutlined } from '@ant-design/icons';
import { useInjectionRules, useCreateInjectionRule, useDeleteInjectionRule, useToggleInjectionRule } from '../../application/useLLMGateway';
import type { InjectionRule } from '../../infrastructure/llm-gateway.api';

View File

@ -1,5 +1,5 @@
import { useState } from 'react';
import { Typography, Tabs, Card, Row, Col, Statistic, Spin } from 'antd';
import { Typography, Tabs, Card, Row, Col, Statistic } from 'antd';
import { KeyOutlined, EditOutlined, SafetyOutlined, BarChartOutlined, FileSearchOutlined } from '@ant-design/icons';
import { useDashboard } from '../../application/useLLMGateway';
import { ApiKeysTab } from '../components/ApiKeysTab';