diff --git a/app/lib/features/search_browser/presentation/widgets/app_bar_title.dart b/app/lib/features/search_browser/presentation/widgets/app_bar_title.dart index e8acaf07..97803fd4 100644 --- a/app/lib/features/search_browser/presentation/widgets/app_bar_title.dart +++ b/app/lib/features/search_browser/presentation/widgets/app_bar_title.dart @@ -79,10 +79,12 @@ class AppBarTitle extends HookConsumerWidget { const SizedBox( width: 4, ), - Text( - page.url.authority, - style: theme.textTheme.bodyMedium - ?.copyWith(color: theme.colorScheme.onSurface), + Expanded( + child: Text( + page.url.authority, + style: theme.textTheme.bodyMedium + ?.copyWith(color: theme.colorScheme.onSurface), + ), ), ], ),