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.