refactor: Remove backticks and square brackets from terminal activity timestamp.
This commit is contained in:
@@ -140,7 +140,7 @@ export const terminalService = {
|
|||||||
if (tx.type.includes("GIFT")) icon = "🌕";
|
if (tx.type.includes("GIFT")) icon = "🌕";
|
||||||
|
|
||||||
const user = allUsers.find(u => u.id === tx.userId);
|
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...*";
|
const activityText = activityLines.join("\n") || "*Silence in the cosmos...*";
|
||||||
|
|||||||
Reference in New Issue
Block a user