Phase 20: Admin Member Editor & Form Declutter #25

Merged
luckberg merged 37 commits from gsd/phase-20-admin-member-editor-form-declutter into main 2026-06-18 20:40:35 -04:00
Showing only changes of commit 41a4faec94 - Show all commits
+1 -3
View File
@@ -1234,9 +1234,7 @@ describe('PATCH /api/admin/members/:id', () => {
currentDevUserId = adminId;
const app = await getApp();
const res = await app.fetch(
jsonRequest('PATCH', `/api/admin/members/${memberId}`, {}),
);
const res = await app.fetch(jsonRequest('PATCH', `/api/admin/members/${memberId}`, {}));
expect(res.status).toBe(400);
const body = (await res.json()) as { error: string };
expect(body.error).toBe('Invalid request');