fix: clean up proxy page redundancy and fix 1proxy sync empty body error (#2052)

This commit is contained in:
diegosouzapw
2026-05-08 17:43:41 -03:00
parent e26f79f052
commit aacd43bb45
8 changed files with 51 additions and 19 deletions

View File

@@ -861,9 +861,7 @@ export async function getCallLogById(id: string) {
LEFT JOIN provider_nodes pn ON pn.id = cl.provider
WHERE cl.id = ?`
)
.get(id) as
| CallLogSummaryRow
| undefined;
.get(id) as CallLogSummaryRow | undefined;
if (!row) return null;
const entry = mapSummaryRow(row);