@@ -24,6 +24,7 @@ import type {
2424
2525import { MOBILE_NAV_HEIGHT } from '#components/mobile/MobileNavTabs' ;
2626import { MobilePageHeader , Page } from '#components/Page' ;
27+ import { Title } from '#components/Title' ;
2728import { useAccounts } from '#hooks/useAccounts' ;
2829import {
2930 useDashboardPages ,
@@ -52,8 +53,8 @@ import {
5253} from '#reports/mutations' ;
5354
5455import { NON_DRAGGABLE_AREA_CLASS_NAME } from './constants' ;
55- import { DashboardHeader } from './DashboardHeader' ;
5656import './overview.scss' ;
57+ import { DashboardHeader } from './DashboardHeader' ;
5758import { DashboardSelector } from './DashboardSelector' ;
5859import { LoadingIndicator } from './LoadingIndicator' ;
5960import { AgeOfMoneyCard } from './reports/AgeOfMoneyCard' ;
@@ -69,7 +70,6 @@ import { NetWorthCard } from './reports/NetWorthCard';
6970import { SankeyCard } from './reports/SankeyCard' ;
7071import { SpendingCard } from './reports/SpendingCard' ;
7172import { SummaryCard } from './reports/SummaryCard' ;
72- import { Title } from '#components/Title' ;
7373
7474function isCustomReportWidget (
7575 widget : DashboardWidgetEntity ,
@@ -735,7 +735,9 @@ export function Overview({ dashboard }: OverviewProps) {
735735 }
736736 padding = { 10 }
737737 >
738- < Title value = { t ( `${ dashboard . name || 'Untitled' } \u2014 Report Dashboard` ) } />
738+ < Title
739+ value = { t ( `${ dashboard . name || 'Untitled' } \u2014 Report Dashboard` ) }
740+ />
739741 { isImporting ? (
740742 < LoadingIndicator message = { t ( 'Import is running...' ) } />
741743 ) : (
0 commit comments