Cuando hago clic en el botón, se muestra el anuncio de Admob, pero cuando vuelvo a hacer clic, me muestran que el Ad is already Loaded y luego el anuncio no se muestra.
import * as React from 'react'; import { ScrollView, View,Button } from 'react-native' import {AdMobInterstitial} from 'expo-ads-admob'; export default function Publications() { const showad = async () => { try { // Display an interstitial await AdMobInterstitial.setAdUnitID('ca-app-pub-3940256099942544/1033173712'); // Test ID, Replace with your-admob-unit-id await AdMobInterstitial.requestAdAsync({ servePersonalizedAds: true}); await AdMobInterstitial.showAdAsync(); } catch (error) { console.error(error); } } return ( <Button title="Press me" onPress={showad}/> ) }