Iframe not load adsense

Hi all, I’m having a hard time on the iframe part of the ionic.

I’ve created an iframe to load my page, it loads everything, however the ads (adsense) of the page does not appear, the space is blank and shows nothing. I have already tried making changes with css and nothing works.
I have adbmod also configured in the app.

Netflix.page.ts

import { Component, OnInit, Input  } from '@angular/core';
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
import { NavController } from '@ionic/angular';
import { DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';

@Component({
  selector: 'app-home',
  templateUrl: 'netflix.page.html',
  styleUrls: ['home.page.scss'],
})
//export class Netflix implements OnInit{
export class Netflix {
  url: any;
  constructor(private sanitize: DomSanitizer){
    this.url = sanitize.bypassSecurityTrustResourceUrl("https://streamingsbrasil.com/category/netflix/amp");
  }

}

page.html

<ion-header>
  <ion-toolbar>
    <ion-buttons slot="start">
      <ion-back-button text="Voltar" defaultHref="home"></ion-back-button>
    </ion-buttons>

    <ion-title>
      Netflix
    </ion-title>
  </ion-toolbar>
</ion-header>

<ion-content>
  <iframe scrolling="yes" style="z-index: 9999 !important;width: 100%;height: 79vh;position: fixed !important;" [src]="url"></iframe>
</ion-content>

<ion-tabs>
  <ion-tab-bar slot="bottom">
    <ion-tab-button href="/netflix/netflixlancamento">
      <ion-icon name="rocket"></ion-icon>
      <ion-label>Lançamentos</ion-label>
    </ion-tab-button>

    <ion-tab-button href="/netflix/netflixnoticias">
      <ion-icon name="paper"></ion-icon>
      <ion-label>Notícias</ion-label>
    </ion-tab-button>

    <ion-tab-button href="/netflix/netflixdicas">
      <ion-icon name="apps"></ion-icon>
      <ion-label>Dicas</ion-label>
    </ion-tab-button>
    <ion-tab-button href="/netflix/netflixremovidos">
      <ion-icon name="trash"></ion-icon>
      <ion-label>Removidos</ion-label>
    </ion-tab-button>
  </ion-tab-bar>
</ion-tabs>