Popover error message

Hi there,

I can create a poover and it works fine but I get the below message at Microsoft Visual Studio

My code is:
let popoverData: any = {
item: “XYZ”
}

        const popover = await this.popoverCtrl.create({
            component: LevelEndPopoverComponent,
            componentProps: { popoverData: popoverData },
            backdropDismiss: false,
            translucent: false
        });

And the error message:

Should I be concerned about the error message? Any pointers on why this is happenning?

Thanks,

Doug