From 2122389b3e039c474f9898ac63b803017b2dbb79 Mon Sep 17 00:00:00 2001 From: Graham Hall Date: Wed, 21 Feb 2024 20:42:08 -0500 Subject: [PATCH] fix build error --- src/pages/archive/[tag].astro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/archive/[tag].astro b/src/pages/archive/[tag].astro index e680984..de84ac2 100644 --- a/src/pages/archive/[tag].astro +++ b/src/pages/archive/[tag].astro @@ -1,6 +1,6 @@ --- import { getCollection } from 'astro:content'; -import { Tag as TagEnum } from '../../content/config'; +import { Tag as TagEnum } from '../../types'; import Layout from '@layouts/Layout.astro'; import FormattedDate from '@components/FormattedDate.astro';