Live video on the AT Protocol
79
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: display slash command errors in chat

authored by

Natalie B. and committed by
Eli Mallon
afd4984c 646d0fb8

+3
+3
js/components/src/components/chat/chat-box.tsx
··· 264 264 if (result.handled) { 265 265 if (result.error) { 266 266 console.error("Slash command error:", result.error); 267 + createChatMessage({ 268 + text: result.error, 269 + }); 267 270 } 268 271 return; 269 272 }