This commit is contained in:
Quan HL
2023-10-30 14:16:27 +07:00
parent 01e6342872
commit 7cab264bab
2 changed files with 0 additions and 2 deletions

View File

@@ -8,7 +8,6 @@ export default class DialPadAudioElements {
chrome.runtime.getURL(`audios/dtmf-${encodeURIComponent(i)}.mp3`)
);
const audio = this.keySounds[i];
console.log({ i, audio }, "xquanluu");
if (audio) {
audio.volume = 0.5;
}

View File

@@ -30,7 +30,6 @@ export const DialPad = ({ handleDigitPress }: DialPadProbs) => {
useEffect(() => {
document.addEventListener("keydown", handleKeyDown);
return () => {
console.log("xquanluu1231");
document.removeEventListener("keydown", handleKeyDown);
};
}, []);