From 2283ecd3d75a1de4211f4209d95fa89622c3d3b0 Mon Sep 17 00:00:00 2001 From: Koper Date: Wed, 9 Aug 2023 20:19:23 +0700 Subject: [PATCH] Fixed typo --- www/app/components/transcript.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/app/components/transcript.js b/www/app/components/transcript.js index dcd924e2..18b9097b 100644 --- a/www/app/components/transcript.js +++ b/www/app/components/transcript.js @@ -29,7 +29,7 @@ const useTranscript = () => { }) .catch((err) => { const errorString = err.response || err || "Unknown error"; - setError(eerrorString); + setError(errorString); setLoading(false); console.error("Error creating transcript:", errorString); });