From 4efa668fec4866b84b4af052a186f4363008614a Mon Sep 17 00:00:00 2001 From: Tommaso Casaburi Date: Thu, 21 May 2026 19:34:50 +0700 Subject: [PATCH] fix(post form): move rules and FAQ prompt to bottom of form Render the rules/FAQ prompt after the last field instead of between the file and options rows so it always sits at the bottom. --- src/components/post-form/post-form.tsx | 30 +++++++++++++------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/src/components/post-form/post-form.tsx b/src/components/post-form/post-form.tsx index 7a1d7050..1315eadd 100644 --- a/src/components/post-form/post-form.tsx +++ b/src/components/post-form/post-form.tsx @@ -316,21 +316,6 @@ const PostFormFields = ({ )} - - - - - {((isInPostView && showSpoilerForReply) || (!isInPostView && showSpoilerForPost)) && ( {t('options')} @@ -377,6 +362,21 @@ const PostFormFields = ({ )} + + + + + );