fix: Lead Master pagination — PAGE_SIZE 25→15, LeadTable flex chain for scroll

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-31 14:37:18 +05:30
parent 33fedf7082
commit 64514f0f3c
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ export const LeadTable = ({
: allColumns; : allColumns;
return ( return (
<div className="overflow-hidden rounded-xl ring-1 ring-secondary"> <div className="flex flex-1 flex-col min-h-0 overflow-hidden rounded-xl ring-1 ring-secondary">
<Table <Table
aria-label="Leads table" aria-label="Leads table"
selectionMode="multiple" selectionMode="multiple"

View File

@@ -34,7 +34,7 @@ type ActiveFilter = {
value: string; value: string;
}; };
const PAGE_SIZE = 25; const PAGE_SIZE = 15;
export const AllLeadsPage = () => { export const AllLeadsPage = () => {
const { user } = useAuth(); const { user } = useAuth();