chore: remove console.log
This commit is contained in:
@@ -61,7 +61,6 @@ export const SaveRecording = ({ fileName }: SaveRecordingProps) => {
|
|||||||
const saveRecording = async () => {
|
const saveRecording = async () => {
|
||||||
if (user) {
|
if (user) {
|
||||||
const payload = { fileName: recordingName, userId: user.id };
|
const payload = { fileName: recordingName, userId: user.id };
|
||||||
console.log('Emitting save with payload:', payload);
|
|
||||||
socket?.emit('save', payload);
|
socket?.emit('save', payload);
|
||||||
setWaitingForSave(true);
|
setWaitingForSave(true);
|
||||||
console.log(`Saving the recording as ${recordingName} for userId ${user.id}`);
|
console.log(`Saving the recording as ${recordingName} for userId ${user.id}`);
|
||||||
|
|||||||
Reference in New Issue
Block a user