feat(web): skill toolList add is_active

This commit is contained in:
zhaoying
2026-04-01 13:33:16 +08:00
parent d3cd66fc6e
commit e77a1a92fd
4 changed files with 130 additions and 116 deletions

View File

@@ -19,6 +19,7 @@
import { Outlet } from 'react-router-dom';
import { useEffect, type FC } from 'react';
import { Layout } from 'antd';
import { useUser } from '@/store/user';
@@ -35,10 +36,10 @@ const BasicAuthLayout: FC = () => {
}, [getUserInfo]);
return (
<div className="rb:relative rb:min-h-screen rb:w-screen">
<Layout className="rb:min-h-screen!">
{/* Render child routes without additional UI */}
<Outlet />
</div>
</Layout>
)
};