Is recording: {props.isRecording ? "true" : "false"}
-
- >
+
);
}
diff --git a/app/components/dashboard.js b/app/components/dashboard.js
index 952c7f47..d8dd0aa3 100644
--- a/app/components/dashboard.js
+++ b/app/components/dashboard.js
@@ -1,13 +1,10 @@
import { Mulberry32 } from "../utils.js";
import React, { useState, useEffect } from "react";
-import AudioVisualizer from "./audioVisualizer.js";
export function Dashboard(props) {
const [openIndex, setOpenIndex] = useState(null);
const [liveTranscript, setLiveTranscript] = useState("");
- const [fakeTranscriptIndex, setFakeTranscriptIndex] = useState(0);
-
const fakeTranscripts = [
"This is the first transcript. We are discussing the current situation of our company. We are currently leading the market with a significant margin, and our future outlook is also very promising...",
"Here is the second transcript. We are now moving to our next topic, which is the progress in our ongoing projects. Most of them are on schedule and the quality of work is up to our standard...",
@@ -104,11 +101,7 @@ export function Dashboard(props) {
return (
<>
-
-
-
Reflector
-
Capture The Signal, Not The Noise
-
+
Timestamp
Topic
@@ -136,11 +129,11 @@ export function Dashboard(props) {
{openIndex === index && (
-
{item.transcript}
+
{item.transcript}
)}
))}
-
+
Live
Transcript
@@ -148,21 +141,9 @@ export function Dashboard(props) {
{generateDecibelGraph(generateDecibelData())}