From 9d13216feaa55873f7fa7bcc230543466c426681 Mon Sep 17 00:00:00 2001 From: Bradley Shellnut Date: Wed, 6 Apr 2022 21:25:10 -0700 Subject: [PATCH] Fixing content type on home get api. --- src/routes/home/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/home/index.ts b/src/routes/home/index.ts index ea19b7c..c6d5736 100644 --- a/src/routes/home/index.ts +++ b/src/routes/home/index.ts @@ -36,7 +36,7 @@ export const get: RequestHandler = async () => { } return { - headers: { 'Content-Type': 'application/json ' }, + headers: { 'Content-Type': 'application/json' }, status: 200, body: { tweets } }