From b02514b54cd6f21de2376dc825331f1c9b36efa3 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Mon, 6 Apr 2026 17:38:38 +0300 Subject: [PATCH] minor hotkey nit --- src/lib/hotkeys/index.native.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/lib/hotkeys/index.native.tsx b/src/lib/hotkeys/index.native.tsx index 0bfce1975c..b5562c9c62 100644 --- a/src/lib/hotkeys/index.native.tsx +++ b/src/lib/hotkeys/index.native.tsx @@ -1,7 +1,5 @@ -import React from 'react' - -export function Provider({children}: React.PropsWithChildren) { - return <>{children} +export function Provider({children}: {children: React.ReactNode}) { + return children } export function useHotkeysContext() {