Fixes Hotkeys causing native to crash immediately on start (#10180)

This commit is contained in:
RetroSunstar
2026-04-06 14:50:14 +01:00
committed by GitHub
parent 84b026efb7
commit 165dd5a779
+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: () => {},
}
}