+
+
Outbox
+ {outbox && (
+
+ {outbox.status === "accepted"
+ ? "valkey"
+ : `valkey · ${outbox.status_reason ?? "unavailable"}`}
+
+ )}
+
+ {error && {error}
}
+ {outbox === null && !error && Loading outbox...
}
+ {outbox && outbox.status === "unavailable" && (
+ Outbox · Valkey not available
+ )}
+ {outbox && outbox.status === "accepted" && outbox.deliveries.length === 0 && (
+ No delivered ticket events on Valkey.
+ )}
+ {outbox && outbox.deliveries.length > 0 && (
+
+ {outbox.deliveries.map((hit) => (
+ -
+
+
+ ))}
+
+ )}
+
+ );
+}
+
function CalendarPanel({
accessToken,
onSelectPost,
@@ -1690,6 +1750,7 @@ function PostList({ accessToken }: { accessToken: string }) {
return (
<>