From a63e82f60b2efa7107e96536c14a3e905f5aea1c Mon Sep 17 00:00:00 2001 From: Nicholas Jitkoff Date: Tue, 17 May 2022 22:41:03 -0700 Subject: [PATCH] fix title --- netlify/edge-functions/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify/edge-functions/index.js b/netlify/edge-functions/index.js index c013084..2591b06 100644 --- a/netlify/edge-functions/index.js +++ b/netlify/edge-functions/index.js @@ -20,7 +20,7 @@ export default async (request, context) => { info.d = info.d?.replace(/_/g, " "); let content = []; - if (info.title) { content.push(`${info.t}`,``); } + if (info.title) { content.push(`${info.title}`,``); } if (info.s) { content.push(``); } if (info.t) { content.push(``); } if (info.d) { content.push(``,``); }