Run pre-commit

This commit is contained in:
shamoon
2024-08-15 16:27:46 -07:00
parent 419397ab7a
commit b607361a1f
2 changed files with 2 additions and 5 deletions

View File

@@ -9,10 +9,7 @@ export default function Component({ service }) {
const { widget } = service;
const { data: downloadStatsData, error: downloadStatsError } = useWidgetAPI(
widget,
"stats",
);
const { data: downloadStatsData, error: downloadStatsError } = useWidgetAPI(widget, "stats");
if (downloadStatsError) {
return <Container service={service} error={downloadStatsError} />;

View File

@@ -5,7 +5,7 @@ const widget = {
proxyHandler: genericProxyHandler,
mappings: {
"stats": {
stats: {
endpoint: "DownloadStats/GetTotalDownloadStats",
},
},