feat(web): useSetVisibility hook + adjacentTransitions helper + MSW handler

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-04 08:30:15 +02:00
parent 516ecf3e95
commit 01f757a239
5 changed files with 96 additions and 0 deletions
+2
View File
@@ -38,4 +38,6 @@ export const handlers = [
http.post("/api/admin/login", () => new HttpResponse(null, { status: 204 })),
http.post("/api/admin/logout", () => new HttpResponse(null, { status: 204 })),
http.post("/api/admin/objects/:id/visibility", () => new HttpResponse(null, { status: 204 })),
];