mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-01 21:13:39 +01:00
Removed refresh intervals
This commit is contained in:
parent
365783204a
commit
2c3947ea3f
@ -5,12 +5,8 @@ import useWidgetAPI from "utils/proxy/use-widget-api";
|
|||||||
export default function Component({ service }) {
|
export default function Component({ service }) {
|
||||||
const { widget } = service;
|
const { widget } = service;
|
||||||
|
|
||||||
const { data: printerStats, error: printerStatsError } = useWidgetAPI(widget, "printer_stats", {
|
const { data: printerStats, error: printerStatsError } = useWidgetAPI(widget, "printer_stats");
|
||||||
refreshInterval: 1500,
|
const { data: jobStats, error: jobStatsError } = useWidgetAPI(widget, "job_stats");
|
||||||
});
|
|
||||||
const { data: jobStats, error: jobStatsError } = useWidgetAPI(widget, "job_stats", {
|
|
||||||
refreshInterval: 1500,
|
|
||||||
});
|
|
||||||
|
|
||||||
if (printerStatsError) {
|
if (printerStatsError) {
|
||||||
return <Container error={printerStatsError} />;
|
return <Container error={printerStatsError} />;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user