refactor: Remove backticks and square brackets from terminal activity timestamp.

This commit is contained in:
syntaxbullet
2025-12-24 17:26:40 +01:00
parent 345e05f821
commit ca443491cb

View File

@@ -140,7 +140,7 @@ export const terminalService = {
if (tx.type.includes("GIFT")) icon = "🌕";
const user = allUsers.find(u => u.id === tx.userId);
return `\`[<t:${time}:T>]\` ${icon} **${user?.username || 'Unknown'}**: ${tx.description}`;
return `<t:${time}:T> ${icon} **${user?.username || 'Unknown'}**: ${tx.description}`;
});
const activityText = activityLines.join("\n") || "*Silence in the cosmos...*";