From c3b698956bdbc4b1c0d73a9ea6d0d2123d51ed29 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Sun, 6 Oct 2024 14:53:54 +0200 Subject: [PATCH] Fix build error Signed-off-by: Martin Berg Alstad --- src/pages/en/hardware.astro | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/pages/en/hardware.astro b/src/pages/en/hardware.astro index 74dc711..7211704 100644 --- a/src/pages/en/hardware.astro +++ b/src/pages/en/hardware.astro @@ -2,9 +2,11 @@ import Layout from "@/layouts/Layout.astro" import HardwarePage from "@/components/HardwarePage.svelte" import "@/styles/global.css" +import { getCollection } from "astro:content" + +const hardware = await getCollection("hardware") --- -

Hardware

- -
\ No newline at end of file + +