This commit is contained in:
futpib 2026-02-25 18:18:23 +03:00 committed by GitHub
commit 8b66c71a7b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -192,12 +192,11 @@ class ArtistPageHeader extends HookConsumerWidget {
), ),
), ),
const Gap(5), const Gap(5),
if (artist.followers != null)
Flexible( Flexible(
child: AutoSizeText( child: AutoSizeText(
context.l10n.followers( context.l10n.followers(
artist.followers == null PrimitiveUtils.toReadableNumber(
? double.infinity
: PrimitiveUtils.toReadableNumber(
artist.followers!.toDouble(), artist.followers!.toDouble(),
), ),
), ),