remove autofocus from DM input

This commit is contained in:
hzrd149 2023-12-07 11:48:35 -06:00
parent 3e0d74ed75
commit c7d030d42a

View File

@ -74,7 +74,6 @@ export default function SendMessageForm({ pubkey, ...props }: { pubkey: string }
) : (
<>
<MagicTextArea
autoFocus
mb="2"
value={getValues().content}
onChange={(e) => setValue("content", e.target.value, { shouldDirty: true })}