From f26156ddb5501a3ba32d9bbcf02c799ae4845c8b Mon Sep 17 00:00:00 2001 From: Khalim Conn-Kowlessar Date: Thu, 28 May 2026 11:17:21 +0000 Subject: [PATCH] added x margin --- .../[slug]/components/PropertyTable.tsx | 22 +++++++++++++------ 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/src/app/portfolio/[slug]/components/PropertyTable.tsx b/src/app/portfolio/[slug]/components/PropertyTable.tsx index 5e34583..e12550e 100644 --- a/src/app/portfolio/[slug]/components/PropertyTable.tsx +++ b/src/app/portfolio/[slug]/components/PropertyTable.tsx @@ -146,8 +146,8 @@ function EmptyPropertyState() {

- Hover over “New Property” to start adding properties - to your portfolio. + Hover over “New Property” to start adding + properties to your portfolio.

@@ -388,7 +388,10 @@ export default function PropertyTable({ filterGroups: allFilterGroups, }); - const queryData = useMemo(() => filteredResponse?.data ?? [], [filteredResponse?.data]); + const queryData = useMemo( + () => filteredResponse?.data ?? [], + [filteredResponse?.data], + ); const filteredTotal = filteredResponse?.total ?? 0; // Second query for total (no filters) — React Query dedupes when filters are empty @@ -500,7 +503,7 @@ export default function PropertyTable({ const [previewError] = useState(null); return ( -
+
{/* Action bar */}
{/* Left: results count */} @@ -594,14 +597,18 @@ export default function PropertyTable({ {/* Export */} {filteredTotal > EXPORT_LIMIT ? ( - + ) : ( @@ -680,7 +687,8 @@ export default function PropertyTable({ {filteredTotal.toLocaleString()} {" "} - properties — more load automatically as you navigate to the last page. + properties — more load automatically as you navigate to the last + page.
)}