Skip to content

Commit 161ab6d

Browse files
committed
refactor(overview): improve comments and documentation
- Correct typos in comments and documentation - Update event description to be more specific
1 parent d178b15 commit 161ab6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/overview/view/overview_page.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import 'package:go_router/go_router.dart';
88
import 'package:ui_kit/ui_kit.dart';
99

1010
/// {@template overview_page}
11-
/// The main dashboard overiview page, displaying key statistics and quick actions.
11+
/// The main dashboard overview page, displaying key statistics and quick actions.
1212
/// {@endtemplate}
1313
class OverviewPage extends StatefulWidget {
1414
/// {@macro overview_page}
@@ -22,7 +22,7 @@ class _OverviewPageState extends State<OverviewPage> {
2222
@override
2323
void initState() {
2424
super.initState();
25-
// Dispatch the event to load dashboard data when the page is initialized.
25+
// Dispatch the event to load dashboard overview data when the page is initialized.
2626
context.read<OverviewBloc>().add(OverviewSummaryRequested());
2727
}
2828

@@ -251,7 +251,7 @@ class _RecentHeadlinesCard extends StatelessWidget {
251251
}
252252
}
253253

254-
/// A private widget to display a single summary statistic on the dashboard.
254+
/// A private widget to display a single summary statistic on the dashboard overview.
255255
class _SummaryCard extends StatelessWidget {
256256
const _SummaryCard({
257257
required this.icon,

0 commit comments

Comments
 (0)