diff --git a/app/components/Sidebar/App.tsx b/app/components/Sidebar/App.tsx index 00c8949d4..84de17ab5 100644 --- a/app/components/Sidebar/App.tsx +++ b/app/components/Sidebar/App.tsx @@ -109,9 +109,11 @@ function AppSidebar() { label={ {t("Drafts")} - - {documents.totalDrafts} - + {documents.totalDrafts > 0 ? ( + + {documents.totalDrafts} + + ) : null} } />