Skip to content

Commit

Permalink
Utilise un textarea pour le formulaire de base
Browse files Browse the repository at this point in the history
  • Loading branch information
guillett committed Oct 3, 2024
1 parent 2575a38 commit 231eb3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/sms-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ export function SMSForm({ supabase, onSent, showSimpleOnly }) {
Message
</label>
<div className="control">
<input
<textarea
className="textarea"
id="message"
className="input"
type="text"
rows="5"
value={message}
onChange={(e) => setMessage(e.target.value)}
/>
Expand Down

0 comments on commit 231eb3c

Please sign in to comment.