fix(ui_layout): fix textwrapper

This commit is contained in:
2023-02-09 18:09:45 +01:00
parent 5d8f94bee8
commit 6bad9a8a05
3 changed files with 3 additions and 3 deletions
@@ -13,6 +13,6 @@ class CustomAppBar extends AppBarComponent with $CustomAppBarCWMixin {
@override
Widget build(BuildContext context) => AppBar(
title: Text(title ?? ''),
title: Text(title?.text ?? ''),
);
}