-
+
{item.title}
+
+ {item.issue_status && (
+
+ )}
+ {!item.read && (
+
+ )}
+
+
+
+
+ {typeLabels[item.type] ?? item.type}
+
{timeAgo(item.created_at)}
-
- {typeLabels[item.type] ?? item.type}
-
- {!item.read && (
-
- )}
);
}
@@ -118,7 +118,6 @@ export default function InboxPage() {
const storeItems = useInboxStore((s) => s.items);
const loading = useInboxStore((s) => s.loading);
- const { getActorName, getActorInitials } = useActorName();
// Sort: severity first, then newest first
const items = useMemo(() => {
@@ -253,7 +252,7 @@ export default function InboxPage() {
>
-
+
Mark all as read
@@ -288,8 +287,6 @@ export default function InboxPage() {
item={item}
isSelected={item.id === selectedId}
onClick={() => handleSelect(item)}
- getActorName={getActorName}
- getActorInitials={getActorInitials}
/>
))}
@@ -297,7 +294,7 @@ export default function InboxPage() {
{/* Right column — detail */}
-