From 9d40263eeddd0c9d4dd3a00200eb9da1b92907a2 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Fri, 22 Aug 2025 05:15:27 -0500 Subject: [PATCH] fix: compiler error (#743) Using { send } gives the resp a type instead of any --- ui/src/components/JigglerSetting.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/components/JigglerSetting.tsx b/ui/src/components/JigglerSetting.tsx index d88b168..10fced1 100644 --- a/ui/src/components/JigglerSetting.tsx +++ b/ui/src/components/JigglerSetting.tsx @@ -30,7 +30,7 @@ export function JigglerSetting({ }, ); - const [send] = useJsonRpc(); + const { send } = useJsonRpc(); const [timezones, setTimezones] = useState([]); useEffect(() => {