Skip to content

Commit 33da098

Browse files
committed
remove currentParams
1 parent 6be59e0 commit 33da098

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

ai/ai-react-app/src/components/Layout/MainLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ const MainLayout: React.FC<MainLayoutProps> = ({
115115
);
116116
case "live":
117117
return (
118-
<LiveView aiInstance={activeAI} currentParams={generativeParams} />
118+
<LiveView aiInstance={activeAI} />
119119
);
120120
default:
121121
console.error(`Unexpected activeMode: ${activeMode}`);

ai/ai-react-app/src/views/LiveView.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import { LIVE_MODELS } from "../services/firebaseAIService";
1212

1313
interface LiveViewProps {
1414
aiInstance: AI;
15-
currentParams: ModelParams;
1615
}
1716

1817
type ConversationState = "idle" | "active" | "error";

0 commit comments

Comments
 (0)