From 8ea383b98bfeb21cfff2e1fbccce484c9c007b48 Mon Sep 17 00:00:00 2001 From: Flea Flicker Date: Thu, 26 Mar 2026 08:45:56 +0000 Subject: [PATCH] fix(waitlist): fix indentation on null check in portal.ts Co-Authored-By: Paperclip --- apps/api/src/routes/portal.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/routes/portal.ts b/apps/api/src/routes/portal.ts index b779add..b7c9fa4 100644 --- a/apps/api/src/routes/portal.ts +++ b/apps/api/src/routes/portal.ts @@ -64,7 +64,7 @@ portalRouter.patch( .where(eq(appointments.id, id)) .returning(); -if (!updated) { + if (!updated) { return c.json({ error: "Not found" }, 404); }