Skip to content

Commit 027e2e2

Browse files
committed
style: format misc
1 parent 5d3acf5 commit 027e2e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/content_management/bloc/draft_headlines/draft_headlines_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ class DraftHeadlinesBloc
120120
final headlineToPublish = originalHeadlines[headlineIndex];
121121
final updatedHeadlines = List<Headline>.from(originalHeadlines)
122122
..removeAt(headlineIndex);
123-
123+
124124
// Optimistically remove the headline from the UI.
125125
emit(
126126
state.copyWith(

lib/content_management/bloc/draft_topics/draft_topics_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ class DraftTopicsBloc extends Bloc<DraftTopicsEvent, DraftTopicsState> {
119119
final topicToPublish = originalTopics[topicIndex];
120120
final updatedTopics = List<Topic>.from(originalTopics)
121121
..removeAt(topicIndex);
122-
122+
123123
// Optimistically remove the topic from the UI.
124124
emit(
125125
state.copyWith(

0 commit comments

Comments
 (0)