diff --git a/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart b/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart index 4b4d18fc..4e659f3a 100644 --- a/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart +++ b/app/lib/features/geckoview/features/browser/presentation/widgets/tab_icon.dart @@ -31,7 +31,9 @@ class TabIcon extends HookConsumerWidget { icon.connectionState != ConnectionState.done && icon.data == null, child: Skeleton.replace( replacement: Bone.icon(size: iconSize), - child: RawImage(image: icon.data, height: iconSize, width: iconSize), + child: RepaintBoundary( + child: RawImage(image: icon.data, height: iconSize, width: iconSize), + ), ), ); }