Skip to content

Commit

Permalink
fix selected space title
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-ishita-g committed Jul 5, 2024
1 parent b689aff commit 07e03fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/lib/ui/flow/home/components/home_top_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class _HomeTopBarState extends State<HomeTopBar> with TickerProviderStateMixin {
child: Text(
widget.loading
? context.l10n.home_select_space_text
: spaceName,
: widget.spaces.isEmpty ? context.l10n.home_select_space_text : spaceName,
style: AppTextStyle.subtitle2
.copyWith(color: context.colorScheme.textPrimary),
),
Expand Down

0 comments on commit 07e03fd

Please sign in to comment.