diff --git a/lib/widgets/common/aves_filter_chip.dart b/lib/widgets/common/aves_filter_chip.dart index 8fa097991..314a2a38b 100644 --- a/lib/widgets/common/aves_filter_chip.dart +++ b/lib/widgets/common/aves_filter_chip.dart @@ -201,7 +201,10 @@ class _AvesFilterChipState extends State { if (widget.heroType == HeroType.always || widget.heroType == HeroType.onTap && _tapped) { chip = Hero( tag: filter, - child: chip, + child: DefaultTextStyle( + style: TextStyle(), + child: chip, + ), ); } return chip;