remove disabled attr

This commit is contained in:
Alejandro Gomez 2023-01-16 08:44:10 +01:00
parent 64f46f2bfc
commit 9bf07d5f17
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817

View File

@ -80,7 +80,7 @@ export function NoteCreator(props) {
{error.length > 0 ? <b className="error">{error}</b> : null}
<FontAwesomeIcon icon={faPaperclip} size="xl" onClick={(e) => attachFile()} />
</div>
<div disabled={note} className="btn" onClick={() => sendNote()}>Send</div>
<div className="btn" onClick={() => sendNote()}>Send</div>
</div>
)}
</div>