diff --git a/ui/social-bot/src/App.jsx b/ui/social-bot/src/App.jsx
index a24dda1..be58963 100644
--- a/ui/social-bot/src/App.jsx
+++ b/ui/social-bot/src/App.jsx
@@ -88,6 +88,9 @@ import { HandTracker } from './components/HandTracker.jsx';
// Salty Face animated expression UI (issue #370)
import { SaltyFace } from './components/SaltyFace.jsx';
+// Parameter server (issue #471)
+import { ParameterServer } from './components/ParameterServer.jsx';
+
const TAB_GROUPS = [
{
label: 'DISPLAY',
@@ -160,8 +163,9 @@ const TAB_GROUPS = [
label: 'CONFIG',
color: 'text-purple-600',
tabs: [
- { id: 'network', label: 'Network' },
- { id: 'settings', label: 'Settings' },
+ { id: 'parameters', label: 'Parameters' },
+ { id: 'network', label: 'Network' },
+ { id: 'settings', label: 'Settings' },
],
},
];
@@ -322,6 +326,8 @@ export default function App() {
{activeTab === 'logs' && }
+ {activeTab === 'parameters' && }
+
{activeTab === 'network' && }
{activeTab === 'settings' && }