diff --git a/src/components/ChatPanel.tsx b/src/components/ChatPanel.tsx
index 1555e7b..75fa9e4 100644
--- a/src/components/ChatPanel.tsx
+++ b/src/components/ChatPanel.tsx
@@ -306,7 +306,7 @@ export default function ChatPanel({ chatId, projectId }: Props) {
{AUTHOR_ICON[msg.author_type] || "π€"}
{msg.author_type === "system"
- ? (msg.actor?.name || "Π‘ΠΈΡΡΠ΅ΠΌΠ°")
+ ? (msg.actor ? `${msg.actor.name} β Π‘ΠΈΡΡΠ΅ΠΌΠ°` : "Π‘ΠΈΡΡΠ΅ΠΌΠ°")
: (msg.author?.name || msg.author?.slug || "Unknown")}
Β·