From 384b9b5c10f0cb64b9c0d9ec54e608e636ce0e05 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Wed, 20 Aug 2025 23:46:56 -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 d88b168a..10fced17 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(() => {