From 320078e89f1083b90651c734b2d78128a62db1de Mon Sep 17 00:00:00 2001 From: DGoel1602 Date: Fri, 26 Dec 2025 13:09:06 -0500 Subject: [PATCH] Spoiler topic tags in daily leetcode --- apps/tk/src/hooks/daily.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/tk/src/hooks/daily.ts b/apps/tk/src/hooks/daily.ts index c0d96b85..6cf12b86 100644 --- a/apps/tk/src/hooks/daily.ts +++ b/apps/tk/src/hooks/daily.ts @@ -112,7 +112,8 @@ export function execute(client: Client) { name: "Topics", value: `${problem.topicTags .map((top) => { - return `${top.name} - *https://leetcode.com/tag/${top.slug}*`; + const topic = `${top.name} - *https://leetcode.com/tag/${top.slug}*`; + return `||${topic}||`; }) .join("\n")}`, },