From 99637350bf21acc2b05b8090f4f6df172564afaa Mon Sep 17 00:00:00 2001 From: Darrin Loeliger Date: Wed, 4 Feb 2026 16:20:02 -0600 Subject: [PATCH] Add encouragement message to drafts list Shows "So many thoughts, you should post one" at the bottom of the drafts list when user has more than 5 drafts. Co-Authored-By: Claude Sonnet 4.5 --- .../com/composer/drafts/DraftsListDialog.tsx | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/src/view/com/composer/drafts/DraftsListDialog.tsx b/src/view/com/composer/drafts/DraftsListDialog.tsx index 834cd04cc7..bfb996deb8 100644 --- a/src/view/com/composer/drafts/DraftsListDialog.tsx +++ b/src/view/com/composer/drafts/DraftsListDialog.tsx @@ -140,13 +140,22 @@ export function DraftsListDialog({ const footerComponent = useMemo( () => ( - + <> + {drafts.length > 5 && ( + + + So many thoughts, you should post one + + + )} + + ), - [isFetchingNextPage, hasNextPage], + [isFetchingNextPage, hasNextPage, drafts.length, t], ) return (