From 1e44276ff6ed509bc840a02ab4d4ad5f5174cce1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 26 Jun 2024 21:15:37 +0000 Subject: [PATCH] style: auto format --- lib/routes/ollama/blog.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/routes/ollama/blog.ts b/lib/routes/ollama/blog.ts index 3282274cc..36e88e9e0 100644 --- a/lib/routes/ollama/blog.ts +++ b/lib/routes/ollama/blog.ts @@ -26,11 +26,11 @@ async function handler() { const items = $('a.group.border-b.py-10') .toArray() .map((item) => ({ - title: $(item).children('h2').first().text(), - link: baseUrl + $(item).attr('href'), - pubDate: parseDate($(item).children('h3').first().text()), - description: $(item).children('p').first().text(), - })); + title: $(item).children('h2').first().text(), + link: baseUrl + $(item).attr('href'), + pubDate: parseDate($(item).children('h3').first().text()), + description: $(item).children('p').first().text(), + })); return { title: 'ollama blog', link: 'https://ollama.com/blog',