Browse Source

Remove autocomplete from message box (#630)

* Remove autocomplete from message box

The message box has autocomplete turned on, which causes some browsers to suggest previously written messages in a really annoying way.   This fixes that issue.

* Update src/components/PageComponents/Messages/MessageInput.tsx

Co-authored-by: Copilot <[email protected]>

---------

Co-authored-by: Copilot <[email protected]>
pull/632/head
jamon 1 year ago
committed by GitHub
parent
commit
9d74fe2d6e
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/components/PageComponents/Messages/MessageInput.tsx

1
src/components/PageComponents/Messages/MessageInput.tsx

@ -60,6 +60,7 @@ export const MessageInput = ({
minLength={1}
name="messageInput"
placeholder="Enter Message"
autoComplete="off"
value={localDraft}
onChange={handleInputChange}
/>

Loading…
Cancel
Save