Fix hotkeys causing crashes on native

This commit is contained in:
RetroSunstar
2026-04-05 22:48:47 +01:00
committed by vineyardbovines
parent 7dd260fa98
commit e15b03bea2
+12
View File
@@ -0,0 +1,12 @@
import React from 'react'
export function Provider({children}: React.PropsWithChildren<unknown>) {
return <>{children}</>
}
export function useHotkeysContext() {
return {
enableScope: () => {},
disableScope: () => {},
}
}