From 9def349244a53385264eda2bb5e35b8a6fc68a79 Mon Sep 17 00:00:00 2001 From: "groombook-ci[bot]" Date: Sat, 28 Mar 2026 22:39:41 +0000 Subject: [PATCH] fix(portal): remove invalid props from section component calls The GRO-205/OOBE commit added sessionId/clientName props to Dashboard and sessionId to PetProfiles/BillingPayments/Communication/AccountSettings calls, but the Props interfaces for these components don't include those props. TypeScript strict mode catches this. Fix: remove the invalid props from calls where they're not accepted. Co-Authored-By: Paperclip --- apps/web/src/portal/CustomerPortal.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/apps/web/src/portal/CustomerPortal.tsx b/apps/web/src/portal/CustomerPortal.tsx index 7fbc453..ee55dd0 100644 --- a/apps/web/src/portal/CustomerPortal.tsx +++ b/apps/web/src/portal/CustomerPortal.tsx @@ -125,19 +125,19 @@ export function CustomerPortal() { const sessionId = session?.id ?? null; switch (activeSection) { case "dashboard": - return ; + return ; case "appointments": return ; case "pets": - return ; + return ; case "reports": - return ; + return ; case "billing": - return ; + return ; case "messages": - return ; + return ; case "settings": - return ; + return ; } };