feat(cards): migrated cards over

This commit is contained in:
2025-04-14 12:26:31 -05:00
parent 328b61f6cc
commit 087d14c585
21 changed files with 1318 additions and 334 deletions

View File

@@ -37,7 +37,7 @@ app.openapi(
return c.json({ success: false, message: "Missing Data." });
}
const check: any = body;
const check: any = body ?? { age: 90, type: null };
const { data: lanes, error: le } = await tryCatch(
getCycleCountCheck(check.age, check.type)
);