From c17e7f9ef84ce3d6635586b1743fd3a4b6ddc586 Mon Sep 17 00:00:00 2001 From: ale Date: Tue, 20 May 2025 01:58:32 +0200 Subject: [PATCH] audio load Signed-off-by: ale --- src/App.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index e47c81c..c13d75a 100644 --- a/src/App.js +++ b/src/App.js @@ -3,7 +3,7 @@ import { useCallback, useEffect, useRef, useState } from "react"; import WaveForm from "./WaveForm"; const App = () => { - const [audioUrl, setAudioUrl] = useState(), + const [audioUrl, setAudioUrl] = useState(''), [analyzerData, setAnalyzerData] = useState(null), [bounce, setBounce] = useState(''), [json, setJson] = useState({}),