Skip to content

Commit bb87fb5

Browse files
authored
fix: compiler error (#743)
Using { send } gives the resp a type instead of any
1 parent 8527b1e commit bb87fb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/JigglerSetting.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export function JigglerSetting({
3030
},
3131
);
3232

33-
const [send] = useJsonRpc();
33+
const { send } = useJsonRpc();
3434
const [timezones, setTimezones] = useState<string[]>([]);
3535

3636
useEffect(() => {

0 commit comments

Comments
 (0)