From 62ffd9b603dfa4b454ea794d08a5da392d2dc199 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 17 Apr 2023 23:23:35 +0100 Subject: [PATCH] daily-email: fix RSS feed --- src/pages/archive.xml.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/archive.xml.js b/src/pages/archive.xml.js index 4c629deb..06cc0746 100644 --- a/src/pages/archive.xml.js +++ b/src/pages/archive.xml.js @@ -1,8 +1,8 @@ import MarkdownIt from 'markdown-it'; +import _ from 'lodash'; import rss from '@astrojs/rss'; import sanitizeHtml from 'sanitize-html'; import { getCollection } from 'astro:content'; -import * as _ from 'lodash'; export async function get() { const emails = await getCollection('daily-email');