Skip to content

Commit c162cff

Browse files
committed
fix(content_management): display specific exception message
- Replaced generic error message. - Now shows specific exception details.
1 parent 1f99267 commit c162cff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/content_management/view/sources_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class _SourcesPageState extends State<SourcesPage> {
5353

5454
if (state.sourcesStatus == ContentManagementStatus.failure) {
5555
return FailureStateWidget(
56-
message: state.errorMessage ?? l10n.unknownError,
56+
exception: state.exception!,
5757
onRetry: () => context.read<ContentManagementBloc>().add(
5858
const LoadSourcesRequested(limit: kDefaultRowsPerPage),
5959
),

0 commit comments

Comments
 (0)