docs: add project brief and fix request route types

This commit is contained in:
Replit Agent
2026-06-06 16:23:08 +03:00
parent c089f41b68
commit 94ccbf6fe4
2 changed files with 58 additions and 9 deletions
+1 -1
View File
@@ -116,7 +116,7 @@ router.get("/requests/:id", (req: Request, res: Response): void => {
// ─── Helper: find & update ────────────────────────────────────────────────────
function findAndUpdate(
id: string,
id: string | string[],
updater: (r: DonationRequest) => void,
res: Response
): void {