From 8059112810d697439a97cf9347d0be595d3dc322 Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Fri, 11 Mar 2022 09:57:44 -0500 Subject: [PATCH] missed a thing --- HttpTrigger/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HttpTrigger/index.ts b/HttpTrigger/index.ts index 41987df..db515d9 100644 --- a/HttpTrigger/index.ts +++ b/HttpTrigger/index.ts @@ -34,7 +34,7 @@ const httpTrigger: AzureFunction = async function (context: Context, req: HttpRe const highlightedCleaned = highlighted.trim() context.res = { status: 200, - body: `
${highlightedCleaned}
` + body: `
${highlightedCleaned}
` } return