Skip to content

Commit 18392b6

Browse files
committed
fix(app): update app bar title to dashboard
- Change AppBar title from 'overview' to 'dashboardTitle' using localization
1 parent 5a01dfa commit 18392b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/app/view/app_shell.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AppShell extends StatelessWidget {
2727
final l10n = AppLocalizationsX(context).l10n;
2828
return Scaffold(
2929
appBar: AppBar(
30-
title: Text(l10n.overview),
30+
title: Text(l10n.dashboardTitle),
3131
actions: [
3232
PopupMenuButton<String>(
3333
onSelected: (value) {

0 commit comments

Comments
 (0)