I'm using electron:^16.0.5, about-window:^1.15.2, and running on Mac OS Big Sur 11.6.1.
Wiring up a call to openAboutWindow from my About context menu item's click handler, the About window opens as expected when the menu item is chosen.
However, if the menu item is chosen again before the About window is closed, multiple About windows will be presented.
Is it possible to show the first window if it is still present?
{
label: 'About',
click: () => openAboutWindow({
...
}),
},