diff --git a/src/components/ChatPanel.tsx b/src/components/ChatPanel.tsx
index 96e657a..78bd80e 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 ? `Π‘ΠΈΡΡΠ΅ΠΌΠ° (${msg.actor.name})` : "Π‘ΠΈΡΡΠ΅ΠΌΠ°")
+ ? (msg.actor?.name || "Π‘ΠΈΡΡΠ΅ΠΌΠ°")
: (msg.author?.name || msg.author?.slug || "Unknown")}
Β·