From 51879c7379db6df81f540ba4da0bfbaaf056c77c Mon Sep 17 00:00:00 2001 From: Felix Uhl Date: Sun, 10 Dec 2023 17:15:24 +0100 Subject: [PATCH] Fix type error --- example/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/src/App.tsx b/example/src/App.tsx index 4ce734a..0149889 100644 --- a/example/src/App.tsx +++ b/example/src/App.tsx @@ -177,7 +177,7 @@ const ResultItem = React.forwardRef( }: { action: ActionImpl; active: boolean; - currentRootActionId: ActionId; + currentRootActionId: ActionId | null | undefined; }, ref: React.Ref ) => {