Removed log statement

This commit is contained in:
Prozilla 2023-08-10 20:19:27 +02:00
parent 3e29a9a5c5
commit 2695e78344
No known key found for this signature in database
GPG key ID: 5858DFE71CAF31EE

View file

@ -145,7 +145,7 @@ export const Window = memo(function Window({ id, app, size, position, focused =
<FontAwesomeIcon icon={faXmark}/>
</button>
</div>
<div className={styles["Window-content"]} onClick={(event) => { console.log(event); }}>
<div className={styles["Window-content"]}>
<app.WindowContent {...options} app={app} setTitle={setTitle} close={close} focus={focus}/>
</div>
</div>