Lightbox bug

@dilip I don’t know if this solution works or not (it’s a long shot), but you should wrap it in Promise.all :

export function CloseButton_click(event) {
Promise.all([
    wixWindow.lightbox.close(),
    wixWindow.openLightbox("Lightbox 2")
]);
}

P.S. It is probably a bug that you should report