This commit is contained in:
Sudharson C 2025-05-01 01:07:47 +00:00 committed by GitHub
commit b44cd1d16a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -119,7 +119,6 @@ export const Dialog = (props: DialogProps) => {
<span className="Dialog__titleContent">{props.title}</span> <span className="Dialog__titleContent">{props.title}</span>
</h2> </h2>
)} )}
{isFullscreen && (
<button <button
className="Dialog__close" className="Dialog__close"
onClick={onClose} onClick={onClose}
@ -129,7 +128,6 @@ export const Dialog = (props: DialogProps) => {
> >
{CloseIcon} {CloseIcon}
</button> </button>
)}
<div className="Dialog__content">{props.children}</div> <div className="Dialog__content">{props.children}</div>
</Island> </Island>
</Modal> </Modal>