diff --git a/app/components/dashboard.js b/app/components/dashboard.js
index 32c91e2e..f5164d5f 100644
--- a/app/components/dashboard.js
+++ b/app/components/dashboard.js
@@ -47,7 +47,7 @@ export function Dashboard({
{openIndex === index && (
-
{item.description}
+ {item.transcript}
)}
))}
diff --git a/app/components/webrtc.js b/app/components/webrtc.js
index 88fd2b7b..73a17931 100644
--- a/app/components/webrtc.js
+++ b/app/components/webrtc.js
@@ -39,6 +39,7 @@ const useWebRTC = (stream, setIsRecording) => {
peer.on("data", (data) => {
const serverData = JSON.parse(data.toString());
+ console.log(serverData);
switch (serverData.cmd) {
case "SHOW_TRANSCRIPTION":