From 0e45a409da7d5622dea9e2f24557f6e646750c90 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Mon, 2 Jan 2023 20:39:51 +0400 Subject: [PATCH] Fix broken videos page --- src/pages/videos/index.astro | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pages/videos/index.astro b/src/pages/videos/index.astro index f5daef6bf..dc5d9c5c9 100644 --- a/src/pages/videos/index.astro +++ b/src/pages/videos/index.astro @@ -4,19 +4,19 @@ import SimplePageHeader from '../../components/SimplePageHeader.astro'; import BaseLayout from '../../layouts/BaseLayout.astro'; import { getAllVideos } from '../../lib/video'; -const guides = await getAllGuides(); +const videos = await getAllVideos(); --- - +
- {guides.map((guide) => )} + {videos.map((video) => )}