mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-06 21:57:48 +01:00
preserve swr mutate
This commit is contained in:
@@ -7,7 +7,7 @@ export default function useWidgetAPI(widget, ...options) {
|
|||||||
if (options && options[1]?.refreshInterval) {
|
if (options && options[1]?.refreshInterval) {
|
||||||
config.refreshInterval = options[1].refreshInterval;
|
config.refreshInterval = options[1].refreshInterval;
|
||||||
}
|
}
|
||||||
const { data, error } = useSWR(formatProxyUrl(widget, ...options), config);
|
const { data, error, mutate } = useSWR(formatProxyUrl(widget, ...options), config);
|
||||||
// make the data error the top-level error
|
// make the data error the top-level error
|
||||||
return { data, error: data?.error ?? error }
|
return { data, error: data?.error ?? error, mutate }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user