From c2295241c07bc780d8bacbb394b09faadc5558f6 Mon Sep 17 00:00:00 2001 From: Scrum4Me Agent <30029041+madhura68@users.noreply.github.com> Date: Sat, 9 May 2026 21:16:20 +0200 Subject: [PATCH] feat(PBI-49): add debugProps to admin/ + dashboard/ + dialogs/ + mobile/ + split-pane/ Co-Authored-By: Claude Sonnet 4.6 --- components/admin/jobs-table.tsx | 3 ++- components/admin/products-table.tsx | 3 ++- components/admin/users-table.tsx | 3 ++- components/dashboard/new-product-button.tsx | 3 ++- components/dashboard/product-list.tsx | 5 +++-- components/dialogs/product-dialog.tsx | 2 ++ components/mobile/landscape-guard.tsx | 2 ++ components/mobile/logout-button.tsx | 2 ++ components/mobile/mobile-tab-bar.tsx | 2 ++ components/split-pane/split-pane.tsx | 5 +++-- 10 files changed, 22 insertions(+), 8 deletions(-) diff --git a/components/admin/jobs-table.tsx b/components/admin/jobs-table.tsx index cddf90b..2d7e7d3 100644 --- a/components/admin/jobs-table.tsx +++ b/components/admin/jobs-table.tsx @@ -12,6 +12,7 @@ import { TableRow, } from '@/components/ui/table' import { cancelJobAction, deleteJobAction } from '@/actions/admin/jobs' +import { debugProps } from '@/lib/debug' type Job = { id: string @@ -203,7 +204,7 @@ export function JobsTable({ jobs }: { jobs: Job[] }) { const [view, setView] = useState<'status' | 'costs'>('status') return ( -
+