fix(waitlist): fix indentation on null check in portal.ts

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Flea Flicker
2026-03-26 08:45:56 +00:00
parent 0ff8dd161d
commit 8ea383b98b
+1 -1
View File
@@ -64,7 +64,7 @@ portalRouter.patch(
.where(eq(appointments.id, id))
.returning();
if (!updated) {
if (!updated) {
return c.json({ error: "Not found" }, 404);
}