diff --git a/src/app/(full-page)/reset-password/page.tsx b/src/app/(full-page)/reset-password/page.tsx index 60ef73f..3c03604 100644 --- a/src/app/(full-page)/reset-password/page.tsx +++ b/src/app/(full-page)/reset-password/page.tsx @@ -33,7 +33,7 @@ function ResetPasswordContent() { {!hasToken ? ( -
+
Password reset token is missing.
) : ( diff --git a/src/app/(modules)/_components/module-shell-header.tsx b/src/app/(modules)/_components/module-shell-header.tsx index 74a5973..8fbdf07 100644 --- a/src/app/(modules)/_components/module-shell-header.tsx +++ b/src/app/(modules)/_components/module-shell-header.tsx @@ -9,7 +9,7 @@ export function ModuleShellHeader() { const { isMobile } = useSidebar(); return ( -
+
{isMobile ? ( <> diff --git a/src/app/(modules)/clients/components/ClientSheet.tsx b/src/app/(modules)/clients/components/ClientSheet.tsx index 06e645f..25a5d56 100644 --- a/src/app/(modules)/clients/components/ClientSheet.tsx +++ b/src/app/(modules)/clients/components/ClientSheet.tsx @@ -13,6 +13,7 @@ import { FormField, PhoneInput } from '@/components/form'; import { Button } from '@/components/ui/button'; import { Dialog, + DialogBody, DialogContent, DialogDescription, DialogFooter, @@ -71,12 +72,12 @@ export function ClientSheet({ return ( - - - + + + {clientId ? 'Edit Client' : 'Create Client'} - + Manage company and primary contact details. @@ -86,7 +87,7 @@ export function ClientSheet({ onSubmit={onSubmit} className="flex min-h-0 flex-1 flex-col" > -
+
-
+ - +
@@ -232,16 +233,16 @@ export function TicketOverviewCard({ - - - - {analysisTitle} - - + + + {analysisTitle} + Video analysis with annotation overlay - + + +
diff --git a/src/app/(modules)/ticket/[ticketId]/components/actions/ClosedTicketAction.tsx b/src/app/(modules)/ticket/[ticketId]/components/actions/ClosedTicketAction.tsx index d808eba..f99bebc 100644 --- a/src/app/(modules)/ticket/[ticketId]/components/actions/ClosedTicketAction.tsx +++ b/src/app/(modules)/ticket/[ticketId]/components/actions/ClosedTicketAction.tsx @@ -89,7 +89,7 @@ export function ClosedTicketAction({ ticket }: { ticket: TicketDetail }) { -
+
} diff --git a/src/app/(modules)/ticket/[ticketId]/components/actions/RepairEvidenceForm.tsx b/src/app/(modules)/ticket/[ticketId]/components/actions/RepairEvidenceForm.tsx index f476e18..f321147 100644 --- a/src/app/(modules)/ticket/[ticketId]/components/actions/RepairEvidenceForm.tsx +++ b/src/app/(modules)/ticket/[ticketId]/components/actions/RepairEvidenceForm.tsx @@ -56,11 +56,11 @@ function MediaSectionHeader({
{duration ? ( - + {duration} ) : null} @@ -382,7 +382,7 @@ export function RepairEvidenceForm({ description="Tap to upload repair photos" disabled={isSubmitting} onClick={openImagePicker} - className="min-h-[104px]" + className="min-h-26" /> ) : (
@@ -457,7 +457,7 @@ export function RepairEvidenceForm({
{error ? ( -
+
{error}
) : null} diff --git a/src/app/(modules)/ticket/[ticketId]/components/actions/ReviewRepairAction.tsx b/src/app/(modules)/ticket/[ticketId]/components/actions/ReviewRepairAction.tsx index a71b7a7..fb45014 100644 --- a/src/app/(modules)/ticket/[ticketId]/components/actions/ReviewRepairAction.tsx +++ b/src/app/(modules)/ticket/[ticketId]/components/actions/ReviewRepairAction.tsx @@ -32,6 +32,7 @@ export function ReviewRepairAction({ ticket }: { ticket: TicketDetail }) {