Skip to content

Commit 64c7a34

Browse files
authored
docs: update README.md
1 parent 85f00b5 commit 64c7a34

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ export default function App() {
4343
const [result, setResult] = useState<AmplitudeData[]>([]);
4444

4545
useEffect(() => {
46-
analyzeAudio('<uri to audio file>') // Local location on disk. !Important!: You must take care of downloading the file and give the application reading permissions
46+
// Local location on disk. !Important!: You must take care of downloading the file and give the application reading permissions
47+
analyzeAudio('<uri to audio file>')
4748
.then(res => setResult(res))
4849
.catch(err => {
4950
// handle error

0 commit comments

Comments
 (0)