Skip to content

Commit 2e6356b

Browse files
committed
Apply requested change
1 parent 5dc5975 commit 2e6356b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

assets/l10n/app_en.arb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1424,4 +1424,4 @@
14241424
"@topicListEmptyPlaceholderHeader": {
14251425
"description": "Header text shown when a channel has no topics."
14261426
}
1427-
}
1427+
}

lib/widgets/topic_list.dart

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,9 @@ class _TopicListState extends State<_TopicList> with PerAccountStoreAwareStateMi
172172
if (lastFetchedTopics!.isEmpty) {
173173
final zulipLocalizations = ZulipLocalizations.of(context);
174174
return PageBodyEmptyContentPlaceholder(
175-
header: zulipLocalizations.topicListEmptyPlaceholderHeader
176-
);
175+
header: zulipLocalizations.topicListEmptyPlaceholderHeader);
177176
}
178-
177+
179178
// This is adapted from parts of the build method on [_InboxPageState].
180179
final topicItems = <_TopicItemData>[];
181180
for (final GetStreamTopicsEntry(:maxId, name: topic) in lastFetchedTopics!) {

0 commit comments

Comments
 (0)