This commit is contained in:
legop3
2025-11-16 04:06:26 -05:00
parent 9b80c2f4c6
commit 2afab19ff5
4 changed files with 11 additions and 9 deletions
@@ -2,6 +2,7 @@ import { useMemo } from 'react';
import { useDriveControl } from '../context/DriveControlContext.jsx';
import { useSocket } from '../context/SocketContext.jsx';
import AuthPanel from './AuthPanel.jsx';
import AdminPanel from './AdminPanel.jsx';
const manualTabs = [
{ key: 'start', label: 'Start OI' },
@@ -69,6 +70,7 @@ export default function AdvancedSettings() {
{!canControl && <p className="mt-1 text-xs text-slate-500">Assign a rover to toggle streams.</p>}
</section>
<AuthPanel />
<AdminPanel />
</div>
);
}