minor hotkey nit

This commit is contained in:
Samuel Newman
2026-04-06 17:38:38 +03:00
parent 165dd5a779
commit b02514b54c
+2 -4
View File
@@ -1,7 +1,5 @@
import React from 'react'
export function Provider({children}: React.PropsWithChildren<unknown>) {
return <>{children}</>
export function Provider({children}: {children: React.ReactNode}) {
return children
}
export function useHotkeysContext() {