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 6be59e0 commit 33da098Copy full SHA for 33da098
ai/ai-react-app/src/components/Layout/MainLayout.tsx
@@ -115,7 +115,7 @@ const MainLayout: React.FC<MainLayoutProps> = ({
115
);
116
case "live":
117
return (
118
- <LiveView aiInstance={activeAI} currentParams={generativeParams} />
+ <LiveView aiInstance={activeAI} />
119
120
default:
121
console.error(`Unexpected activeMode: ${activeMode}`);
ai/ai-react-app/src/views/LiveView.tsx
@@ -12,7 +12,6 @@ import { LIVE_MODELS } from "../services/firebaseAIService";
12
13
interface LiveViewProps {
14
aiInstance: AI;
15
- currentParams: ModelParams;
16
}
17
18
type ConversationState = "idle" | "active" | "error";
0 commit comments