changes types, assign to participant instead of speaker

This commit is contained in:
Sara
2023-12-12 13:29:55 +01:00
parent d8c4f29d72
commit c02c3b190c
7 changed files with 312 additions and 224 deletions

View File

@@ -5,9 +5,10 @@ import { Topic } from "./webSocketTypes";
import getApi from "../../lib/getApi";
import { shouldShowError } from "../../lib/errorUtils";
import mockTopics from "./mockTopics.json";
import { GetTranscriptTopic } from "../../api";
type TranscriptTopics = {
topics: Topic[] | null;
topics: GetTranscriptTopic[] | null;
loading: boolean;
error: Error | null;
};