Phase 6 Complete by Claude Code

This commit is contained in:
2026-02-17 23:57:23 +02:00
parent c0605c77db
commit d6e522deb8
12 changed files with 1360 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ import { useParams, useNavigate } from "react-router-dom";
import api from "../api/client";
import { useAuth } from "../auth/AuthContext";
import ConfirmDialog from "../components/ConfirmDialog";
import NotesPanel from "../equipment/NotesPanel";
function Field({ label, children }) {
return (
@@ -473,6 +474,9 @@ export default function UserDetail() {
</div>
)}
</section>
{/* Equipment Notes */}
<NotesPanel userId={id} />
</div>
</div>