From ec2f8c258d00da46c1dafa0c9a099b6b26190891 Mon Sep 17 00:00:00 2001 From: Marc Rousavy Date: Mon, 15 Jan 2024 10:10:30 +0100 Subject: [PATCH] docs: Fix typo --- docs/docs/guides/FOCUSING.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/guides/FOCUSING.mdx b/docs/docs/guides/FOCUSING.mdx index 841b2a3..9367b8a 100644 --- a/docs/docs/guides/FOCUSING.mdx +++ b/docs/docs/guides/FOCUSING.mdx @@ -35,7 +35,7 @@ export function App() { const focus = useCallback((point: Point) => { const c = camera.current if (c == null) return - c.focus() + c.focus(point) }, []) const gesture = Gesture.Tap()