Ionic React - NFC

Hi, I’m trying to read NFC tags on my Android with Ionic React. PhoneGap NFC seems to be the only plugin to do the job.
So far, I didn’t figure it out. I added a listener, but I don’t get any data. I would like to block the Android popup when the phone detects a new tag.

  useIonViewDidEnter(() => {
    NFC.addNdefListener(function (nfcEvent: { tag: any; }) {
      console.log(JSON.stringify(nfcEvent.tag, null, 4));
      setStringRead(JSON.stringify(nfcEvent.tag, null, 4));
    }, function () {
      console.log("Listening for NDEF Tags.");
    });
  });

If you have any idea, thanks for your help