diff --git a/src/modules/registratura/components/imminent-actions.tsx b/src/modules/registratura/components/imminent-actions.tsx index 9c691ae..aa10c12 100644 --- a/src/modules/registratura/components/imminent-actions.tsx +++ b/src/modules/registratura/components/imminent-actions.tsx @@ -43,7 +43,6 @@ export function ImminentActions({ entries, onNavigate }: ImminentActionsProps) { const nowMs = now.getTime(); for (const entry of entries) { - if (entry.status !== "deschis") continue; // Document expiry alerts (already expired or within horizon) if (entry.expiryDate) { diff --git a/src/modules/registratura/components/registry-entry-detail.tsx b/src/modules/registratura/components/registry-entry-detail.tsx index 1df9e6a..3d5f9bd 100644 --- a/src/modules/registratura/components/registry-entry-detail.tsx +++ b/src/modules/registratura/components/registry-entry-detail.tsx @@ -461,7 +461,7 @@ export function RegistryEntryDetail({ } // Expiry date alert - if (entry.expiryDate && entry.status === "deschis") { + if (entry.expiryDate) { const expiry = new Date(entry.expiryDate); const now = new Date(); now.setHours(0, 0, 0, 0);