diff --git a/catalyst_voices/packages/catalyst_voices_brands/lib/src/theme_extensions/brand_assets.dart b/catalyst_voices/packages/catalyst_voices_brands/lib/src/theme_extensions/brand_assets.dart index 80b2af4eeb..d722ec6065 100644 --- a/catalyst_voices/packages/catalyst_voices_brands/lib/src/theme_extensions/brand_assets.dart +++ b/catalyst_voices/packages/catalyst_voices_brands/lib/src/theme_extensions/brand_assets.dart @@ -40,12 +40,11 @@ class BrandAssets extends ThemeExtension { ) { if (other is! BrandAssets) { return this; + } else if (t >= 0.5) { + return other; + } else { + return this; } - - return BrandAssets( - logo: logo, - logoIcon: logoIcon, - ); } }