Fix compiler error

Using { send } gives the resp a type instead of any
This commit is contained in:
Marc Brooks 2025-08-20 23:48:14 -05:00
parent efb7539537
commit 681b9c0b6e
No known key found for this signature in database
GPG Key ID: 583A6AF2D6AE1DC6
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ export function JigglerSetting({
},
);
const [send] = useJsonRpc();
const { send } = useJsonRpc();
const [timezones, setTimezones] = useState<string[]>([]);
useEffect(() => {