From 681b9c0b6e364185c849d8f24c7581b2664fecd2 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Wed, 20 Aug 2025 23:48:14 -0500 Subject: [PATCH] Fix compiler error 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(() => {