"use client"; import { use } from "react"; import { InspectionProgress } from "@/components/inspection/InspectionProgress"; export default function ProgressPage({ params, }: { params: Promise<{ id: string }>; }) { const { id } = use(params); return (