From 4800ecaa0c92e71f8269745ee2f37978d7584920 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 7 Dec 2025 12:50:07 +0000 Subject: [PATCH] Small typo fix --- src/routes/content.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/routes/content.js b/src/routes/content.js index d16bc11..d9dab01 100644 --- a/src/routes/content.js +++ b/src/routes/content.js @@ -11,7 +11,7 @@ import { importNotionCvs } from "../objects/cv.js"; import { importFiles } from "../objects/files.js"; import { importNotionProjects } from "../objects/projects.js"; import { importVideos } from "../objects/videos.js"; -import { handleBlurhashUpdate } from "../utils/imageCache"; +import { handleBlurHashUpdate } from "../utils/imageCache"; // Fetch or return cached content export async function getCachedContent(env, request) { @@ -44,7 +44,7 @@ export async function getCachedContent(env, request) { cachedContent.images = await importImages(env); cachedContent.files = await importFiles(env); cachedContent.videos = await importVideos(env); - await handleBlurhashUpdate(request, env); + await handleBlurHashUpdate(request, env); } if (noPages) { @@ -52,7 +52,7 @@ export async function getCachedContent(env, request) { cachedContent.images = await importImages(env); cachedContent.files = await importFiles(env); cachedContent.videos = await importVideos(env); - await handleBlurhashUpdate(request, env); + await handleBlurHashUpdate(request, env); } if (noCvs) { @@ -66,7 +66,7 @@ export async function getCachedContent(env, request) { cachedContent.images = await importImages(env); cachedContent.files = await importFiles(env); cachedContent.videos = await importVideos(env); - await handleBlurhashUpdate(request, env); + await handleBlurHashUpdate(request, env); } if (noProjects) {