diff --git a/lib/widgets/avatar_or_hash.dart b/lib/widgets/avatar_or_hash.dart index 641b8ad..caac0c7 100644 --- a/lib/widgets/avatar_or_hash.dart +++ b/lib/widgets/avatar_or_hash.dart @@ -62,8 +62,8 @@ class AvatarOrHash extends ConsumerWidget { ), fit: .cover, loadingBuilder: (_, child, loadingProgress) => - loadingProgress == null ? child : box, - errorBuilder: (_, _, _) => box, + loadingProgress == null ? child : fallback ?? box, + errorBuilder: (_, _, _) => fallback ?? box, ), ), ),