Compatibility check finds something that doesn't exist in my project

Hi all, I’m getting an error in my compatibility check workflow that is not part of my project:

1) Changed `PanelPlugin.setPanelOptions` used in `src/module.ts:267`
Parameter type changed:

+ Added - Removed

-declare type PanelOptionsSupplier<TOptions> = (builder: PanelOptionsEditorBuilder<TOptions>, context: StandardEditorContext<TOptions>) => void;
+type PanelOptionsSupplier<TOptions> = (builder: PanelOptionsEditorBuilder<TOptions>, context: StandardEditorContext<TOptions>) => void;

First of all, my module.ts file is only 266 lines, and I also searched for “PanelOptionsSupplier” and it is not anywhere in my file. I also found a GitHub issue that may be loosely related. Other than that, I’m stuck. Can someone help me track this down please?

Hi @ventura I’m still working in the issue you mentioned and it is a bit more complex. Do notice that the compatibility check shouldn’t stop you from building or publishing your plugin.

I am aware of this, but I just wanted to bring it up anyway. Thank you for your attention to this issue!