Skip to content

Commit

Permalink
chore(dashboard): update import path
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao committed Nov 10, 2024
1 parent 65aea64 commit 49116a6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/pages/dashboard/index.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import { Box } from '@mui/material';
import { TextMarkup, Typography } from '@components/index';
import { IconCheckCircle } from '@icons/index';
import { useAppTranslation, useCurrentUser } from '@hooks/index';
import useDashboard from './useDashboard';
import CongregationCard from './congregation';
import Markup from '@components/text_markup';
import MinistryCard from './ministry';
import MeetingsCard from './meetings';
import MeetingsMaterialsCard from './meeting_materials';
import PersonsCard from './persons';
import ReportsCard from './reports';
import useDashboard from './useDashboard';
import Snackbar from '@components/snackbar';
import Typography from '@components/typography';

const Dashboard = () => {
const { t } = useAppTranslation();
Expand All @@ -36,7 +37,7 @@ const Dashboard = () => {
<Typography className="h1">
{t('tr_greeting', { firstName })} &#128075;
</Typography>
<TextMarkup
<Markup
content={
countFutureAssignments === 0
? t('tr_noMeetingAssignments')
Expand Down

0 comments on commit 49116a6

Please sign in to comment.