Fixing content type on home get api.

This commit is contained in:
Bradley Shellnut 2022-04-06 21:25:10 -07:00
parent 63b6fc2ed8
commit 9d13216fea

View file

@ -36,7 +36,7 @@ export const get: RequestHandler = async () => {
}
return {
headers: { 'Content-Type': 'application/json ' },
headers: { 'Content-Type': 'application/json' },
status: 200,
body: { tweets }
}