From 579f6ced4dfb2972b1763fb9a77f5558be55871b Mon Sep 17 00:00:00 2001 From: Josh <102478723+realjoshuau@users.noreply.github.com> Date: Tue, 21 Nov 2023 22:50:21 -0800 Subject: [PATCH] force CI --- apps/web/app/api/route.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/app/api/route.ts b/apps/web/app/api/route.ts index 512b89d..cc05a43 100644 --- a/apps/web/app/api/route.ts +++ b/apps/web/app/api/route.ts @@ -1,5 +1,5 @@ // Empty route file import { NextResponse } from 'next/server'; export async function GET() { - return NextResponse.json({ time: new Date().toISOString() }); + return NextResponse.json({ time: new Date().toUTCString() }); }