style: auto format

This commit is contained in:
github-actions[bot] 2026-02-13 17:25:16 +00:00
parent f1164b516b
commit da080891d9
1 changed files with 1 additions and 6 deletions

View File

@ -414,12 +414,7 @@ export const fetchBbcContent = async (link: string, item) => {
const articleData = pageProps.page[pageProps.pageKey];
return {
category: [
...new Set([
...(item.category || []),
...(articleData.topics?.map((t) => t.title) ?? []),
]),
],
category: [...new Set([...(item.category || []), ...(articleData.topics?.map((t) => t.title) ?? [])])],
description: renderArticleContent(articleData.contents),
};
}