fix: call-recordings JSX nesting — extra closing div removed

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-17 05:53:36 +05:30
parent 5f3b455edc
commit e175735d6c

View File

@@ -238,7 +238,7 @@ export const CallRecordingsPage = () => {
const handleSearch = (val: string) => { setSearch(val); setCurrentPage(1); };
return (
<>
<div className="flex flex-1 flex-col overflow-hidden">
<PageHeader
title="Call Recordings"
badge={filtered.length}
@@ -323,7 +323,6 @@ export const CallRecordingsPage = () => {
/>
);
})()}
</div>
</>
</div>
);
};