Skip to content

Commit 4a9291a

Browse files
committed
refactor(account): remove unnecessary comment in available sources bloc
- Deleted the redundant comment about readAll method assumption - The TODO comment about pagination remains for future consideration
1 parent 4d96739 commit 4a9291a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

lib/account/bloc/available_sources_bloc.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ class AvailableSourcesBloc
3232
}
3333
emit(state.copyWith(status: AvailableSourcesStatus.loading));
3434
try {
35-
// Assuming readAll without parameters fetches all items.
3635
// TODO(fulleni): Add pagination if necessary for very large datasets.
3736
final response = await _sourcesRepository.readAll(
3837
sort: [const SortOption('name', SortOrder.asc)],

0 commit comments

Comments
 (0)