Skip to content

Commit

Permalink
fixup! Create bare bones of the MPD Health Indicator report page
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-bizz committed Dec 16, 2024
1 parent 7efc41d commit 40f0514
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Head from 'next/head';
import React, { useState } from 'react';
import { Box } from '@mui/material';
import { useTranslation } from 'react-i18next';
import { loadSession } from 'pages/api/utils/pagePropsHelpers';
import { ensureSessionAndAccountList } from 'pages/api/utils/pagePropsHelpers';
import { SidePanelsLayout } from 'src/components/Layouts/SidePanelsLayout';
import Loading from 'src/components/Loading';
import { HealthIndicatorReport } from 'src/components/Reports/HealthIndicatorReport/HealthIndicatorReport';
Expand Down Expand Up @@ -61,6 +61,6 @@ const HealthIndicatorPage: React.FC = () => {
);
};

export const getServerSideProps = loadSession;
export const getServerSideProps = ensureSessionAndAccountList;

export default HealthIndicatorPage;

0 comments on commit 40f0514

Please sign in to comment.