Fix compiler error

Using { send } gives the resp a type instead of any
This commit is contained in:
Marc Brooks 2025-08-20 23:46:56 -05:00
parent 8527b1eff1
commit 384b9b5c10
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(() => {