()
| 425 | }; |
| 426 | |
| 427 | async function loadAd() { |
| 428 | if (!helpers.canShowAds()) return; |
| 429 | try { |
| 430 | if (!(await interstitialAd?.isLoaded())) { |
| 431 | toast(strings.loading); |
| 432 | await interstitialAd?.load(); |
| 433 | } |
| 434 | } catch (error) { |
| 435 | console.warn("Failed to load interstitial ad.", error); |
| 436 | } |
| 437 | } |