diff --git a/src/services/event-log.ts b/src/services/event-log.ts index ac280dd..3f980f7 100644 --- a/src/services/event-log.ts +++ b/src/services/event-log.ts @@ -415,16 +415,6 @@ class EventLogService { status: newStatus, }; - // Clean up publish ID mapping when publish reaches terminal state - if (newStatus !== "pending") { - const allTerminal = Array.from(newRelayStatus.values()).every( - (r) => r.status === "success" || r.status === "error", - ); - if (allTerminal) { - this.publishIdToEntryId.delete(update.publishId); - } - } - // Notify subscribers this.entriesSubject.next([...this.entries]); }