From 8faea1663ae0c6d1190a5043054197b6a58019f3 Mon Sep 17 00:00:00 2001 From: Prospector Date: Sat, 5 Jul 2025 11:37:41 -0700 Subject: [PATCH] liiiiint --- apps/app-frontend/src/App.vue | 18 ++++++++++-------- .../src/components/ui/world/InstanceItem.vue | 4 ++-- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/apps/app-frontend/src/App.vue b/apps/app-frontend/src/App.vue index 284350de4..df7526671 100644 --- a/apps/app-frontend/src/App.vue +++ b/apps/app-frontend/src/App.vue @@ -195,14 +195,16 @@ async function setupApp() { .then((res) => { if (res && res.articles) { // Format expected by NewsArticleCard component. - news.value = res.articles.map((article) => ({ - ...article, - path: article.link, - thumbnail: article.thumbnail, - title: article.title, - summary: article.summary, - date: article.date, - })).slice(0, 4) + news.value = res.articles + .map((article) => ({ + ...article, + path: article.link, + thumbnail: article.thumbnail, + title: article.title, + summary: article.summary, + date: article.date, + })) + .slice(0, 4) } }) diff --git a/apps/app-frontend/src/components/ui/world/InstanceItem.vue b/apps/app-frontend/src/components/ui/world/InstanceItem.vue index 50e3907fd..12fc67468 100644 --- a/apps/app-frontend/src/components/ui/world/InstanceItem.vue +++ b/apps/app-frontend/src/components/ui/world/InstanceItem.vue @@ -1,5 +1,5 @@