Skip to content

Commit

Permalink
fix(totals-chart): mark maintaining
Browse files Browse the repository at this point in the history
mark maintaining
  • Loading branch information
snomiao committed Jan 20, 2025
1 parent 5f4f2a4 commit 913b5b6
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions app/(dashboard)/totals-chart/page.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import UseSWRComponent from "use-swr-component";
import { TotalsChartBlock } from "../TotalsBlock";
/**
* @author: snomiao <[email protected]>
*/
export default function TotalsPage() {
return (
<UseSWRComponent props={{}} Component={TotalsChartBlock} refreshInterval={1e3}>
{<TotalsChartBlock />}
</UseSWRComponent>
);
export default function TotalsChartPage() {
return <>Maintaining</>
// return (
// <UseSWRComponent props={{}} Component={TotalsChartBlock} refreshInterval={1e3}>
// {<TotalsChartBlock />}
// </UseSWRComponent>
// );
}

0 comments on commit 913b5b6

Please sign in to comment.