This commit is contained in:
Timothy Jaeryang Baek 2025-03-08 00:13:58 +00:00
parent 3ab917cdd0
commit dc3abc2bcb

View File

@ -171,7 +171,11 @@
}
// Check if Ctrl + Shift + ' is pressed
if (isCtrlPressed && isShiftPressed && event.key.toLowerCase() === `'`) {
if (
isCtrlPressed &&
isShiftPressed &&
(event.key.toLowerCase() === `'` || event.key.toLowerCase() === `"`)
) {
event.preventDefault();
console.log('temporaryChat');
temporaryChatEnabled.set(!$temporaryChatEnabled);