From 8eba95ad5c0b9817edbde105c3882a3dbb71d5d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Espino=20Garc=C3=ADa?= Date: Mon, 26 Aug 2024 10:48:44 +0200 Subject: [PATCH] Quick fix for post input not capitalizing the start of sentences (#8168) --- app/components/post_draft/post_input/post_input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/components/post_draft/post_input/post_input.tsx b/app/components/post_draft/post_input/post_input.tsx index a82022d65..756a05e77 100644 --- a/app/components/post_draft/post_input/post_input.tsx +++ b/app/components/post_draft/post_input/post_input.tsx @@ -335,6 +335,7 @@ export default function PostInput({ underlineColorAndroid='transparent' textContentType='none' value={value} + autoCapitalize='sentences' /> ); }