Browse Source
Merge pull request #265 from fifieldt/fix-message-limit
Allow single character messages in MessageInput
pull/268/head
Hunter Thornsberry
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/components/PageComponents/Messages/MessageInput.tsx
|
|
|
@ -62,7 +62,7 @@ export const MessageInput = ({ |
|
|
|
<span className="w-full"> |
|
|
|
<Input |
|
|
|
autoFocus={true} |
|
|
|
minLength={2} |
|
|
|
minLength={1} |
|
|
|
placeholder="Enter Message" |
|
|
|
value={messageDraft} |
|
|
|
onChange={(e) => setMessageDraft(e.target.value)} |
|
|
|
|