Commit d4169dd2 authored by Kantz's avatar Kantz
Browse files

fiex key entfernung

parent c26e39a5
...@@ -5,14 +5,12 @@ import { escapeAsterisksInsideMath } from "../../utils/mathMarkdown"; ...@@ -5,14 +5,12 @@ import { escapeAsterisksInsideMath } from "../../utils/mathMarkdown";
type SocraticPanelProps = { type SocraticPanelProps = {
selectedTopicLabel?: string; selectedTopicLabel?: string;
selectedTopicKey?: string;
selectedTopicSummary?: string; selectedTopicSummary?: string;
onChangeSelection?: () => void; onChangeSelection?: () => void;
}; };
export default function SocraticPanel({ export default function SocraticPanel({
selectedTopicLabel, selectedTopicLabel,
selectedTopicKey,
selectedTopicSummary, selectedTopicSummary,
onChangeSelection, onChangeSelection,
}: SocraticPanelProps) { }: SocraticPanelProps) {
......
...@@ -1324,7 +1324,6 @@ export default function ChatPage() { ...@@ -1324,7 +1324,6 @@ export default function ChatPage() {
{selectedOrchestrator === "socratic" && selectedTopic ? ( {selectedOrchestrator === "socratic" && selectedTopic ? (
<SocraticPanel <SocraticPanel
selectedTopicLabel={selectedTopic.label} selectedTopicLabel={selectedTopic.label}
selectedTopicKey={selectedTopic.topicKey}
selectedTopicSummary={selectedTopic.summary} selectedTopicSummary={selectedTopic.summary}
onChangeSelection={handleChangeTaskArea} onChangeSelection={handleChangeTaskArea}
/> />
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment