diff --git a/apps/web/Components/Admin/index.tsx b/apps/web/Components/Admin/index.tsx
index 58a913a..6e79f06 100644
--- a/apps/web/Components/Admin/index.tsx
+++ b/apps/web/Components/Admin/index.tsx
@@ -1,9 +1 @@
-import { CacheQueries } from './Cache';
-
-export function AdminPanel() {
- return (
-
-
-
- );
-}
+export { CacheQueries } from './Cache';
diff --git a/apps/web/pages/admin.jsx b/apps/web/pages/admin.jsx
index 926a8e4..964b162 100644
--- a/apps/web/pages/admin.jsx
+++ b/apps/web/pages/admin.jsx
@@ -1,7 +1,7 @@
import { getQueries } from '@/api/cache/query';
import { getUser } from '@/api/user/query';
import initializeApollo from '@/apollo/client';
-import { AdminPanel } from '@/Components/Admin';
+import { CacheQueries } from '@/Components/Admin';
import { Error } from '@/Components/Common/Error';
import { AdminGrid } from '@/Components/Layout/Page';
import { unlimitedRoles } from '@/config/users';
@@ -15,7 +15,7 @@ function Content() {
Панель управления
-
+
);
}