Skip to content

Commit

Permalink
Fix : modify to restart button unchanged error
Browse files Browse the repository at this point in the history
- #8
  • Loading branch information
carboxaminoo committed Mar 7, 2024
1 parent 9814fbf commit 091334a
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
const audioBlob = new Blob(audioChunks, { type: 'audio/wav' });
const audioUrl = URL.createObjectURL(audioBlob);
// 이벤트를 통해 오디오 URL을 부모 컴포넌트로 전달
dispatch('audioRecorded', { audioUrl, audioBlob });
dispatch('audioRecorded', audioUrl );
dispatch('blobUpdated', audioBlob);
isRecordingComplete = true;
};
Expand Down

0 comments on commit 091334a

Please sign in to comment.