Merge pull request #228 from yaso-meth/QOL--remove-error-by-ad-banner

remove error message with ad
This commit is contained in:
yaso-meth 2025-07-11 11:25:08 +02:00 committed by GitHub
commit d911214881
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,7 +66,8 @@ class _MihBannerAdState extends State<MihBannerAd> {
height: _bannerAd!.size.height.toDouble(),
child: AdWidget(ad: _bannerAd!))
: SizedBox(
child: Text(errorMessage),
child:
Text(AppEnviroment.getEnv() == "Dev" ? errorMessage : ""),
),
],
);