From 66211262d0131bd531672805392dd9ab4d7b9556 Mon Sep 17 00:00:00 2001 From: Sara Date: Mon, 22 Jan 2024 16:24:11 +0100 Subject: [PATCH] past meeting transcript details --- www/app/[domain]/transcripts/topicList.tsx | 34 ++++++++++------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/www/app/[domain]/transcripts/topicList.tsx b/www/app/[domain]/transcripts/topicList.tsx index 6dd7655a..512498de 100644 --- a/www/app/[domain]/transcripts/topicList.tsx +++ b/www/app/[domain]/transcripts/topicList.tsx @@ -1,9 +1,4 @@ import React, { useState, useEffect } from "react"; -import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; -import { - faChevronRight, - faChevronDown, -} from "@fortawesome/free-solid-svg-icons"; import { formatTime } from "../../lib/time"; import ScrollToBottom from "./scrollToBottom"; import { Topic } from "./webSocketTypes"; @@ -17,10 +12,8 @@ import { AccordionPanel, Box, Flex, - Icon, Text, } from "@chakra-ui/react"; -import { FaChevronDown, FaChevronRight } from "react-icons/fa"; type TopicListProps = { topics: Topic[]; @@ -155,21 +148,26 @@ export function TopicList({ pb={2} lineHeight={"1.3"} > - + [{formatTime(segment.start)}] - - + {" "} {getSpeakerName(segment.speaker)}: - {" "} + {" "} {segment.text} ))}