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