mirror of https://github.com/jetkvm/kvm.git
Fix compiler error
Using { send } gives the resp a type instead of any
This commit is contained in:
parent
efb7539537
commit
681b9c0b6e
|
@ -30,7 +30,7 @@ export function JigglerSetting({
|
|||
},
|
||||
);
|
||||
|
||||
const [send] = useJsonRpc();
|
||||
const { send } = useJsonRpc();
|
||||
const [timezones, setTimezones] = useState<string[]>([]);
|
||||
|
||||
useEffect(() => {
|
||||
|
|
Loading…
Reference in New Issue