Open
Description
The buttons on the top bar of a window are not rendering correctly. Here's a screenshot of the window:
Here's also a shortened snippet of the title bar options I've included.
<Modal
title="Welcome to my portfolio!"
titleBarOptions={[
<TitleBar.Help key="help" onClick={() => { alert('Help!') }} />,
<Modal.Minimize />,
<TitleBar.Close key="close" onClick={handleCloseWindow} />
]}
icon={<User1 variant="14x14_4" />} width={`${width}px`} height={`${height}px`}
className='flex flex-col'
boxShadow="$out"
>
//...
</Modal>
I'm working locally with the latest React95 distribution and NextJS 14.