remove console line

This commit is contained in:
Half-Shot
2024-12-05 11:05:31 +00:00
parent 0139499e0d
commit 983afc6967

View File

@@ -51,7 +51,6 @@ export function ReactionsAudioRenderer(): ReactNode {
audioEngineRef.current.playSound(reactionName); audioEngineRef.current.playSound(reactionName);
} else { } else {
// Fallback sounds. // Fallback sounds.
console.log("Playing fallback sound");
audioEngineRef.current.playSound("generic"); audioEngineRef.current.playSound("generic");
} }
} }