getting it to play and stuff

This commit is contained in:
talksik
2022-01-18 04:01:35 -08:00
parent 62a668ffe4
commit 7b1fede195
3 changed files with 108 additions and 56 deletions
+2 -1
View File
@@ -55,6 +55,7 @@ interface KeyboardContextInterface {
export enum ShowModalType {
createLink = "link",
createRoom = "room",
powerPlayer = "powerPlayer",
na = "none",
}
@@ -361,7 +362,7 @@ export default function KeyboardContextProvider({ children }) {
}
// handle for when in modals, don't want any of this crap
if (showModalType == ShowModalType.createRoom) {
if (showModalType != ShowModalType.na) {
return;
}