We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf4d88b commit 2afe334Copy full SHA for 2afe334
multimodal/tarko/agent-ui/src/standalone/app/App.tsx
@@ -42,7 +42,15 @@ export const App: React.FC = () => {
42
43
if (isReplayMode) {
44
console.log('[ReplayMode] Rendering replay layout directly');
45
- return <Layout isReplayMode={true} />;
+ return (
46
+ <div className="flex h-screen bg-[#F2F3F5] dark:bg-gray-900 text-gray-900 dark:text-gray-100 overflow-hidden">
47
+ <Sidebar />
48
+ <div className="flex-1 flex flex-col overflow-hidden">
49
+ <Navbar />
50
+ <Layout isReplayMode={true} />
51
+ </div>
52
53
+ );
54
}
55
56
return (
0 commit comments