Resolve syntax issue

This commit is contained in:
Owen
2026-08-05 10:31:14 -04:00
parent 8c1169738e
commit 346a0bdc98
+1 -1
View File
@@ -131,7 +131,7 @@ export async function listAiProviders(
return response<ListAiProvidersResponse>(res, {
data: {
providers: rows.map(toPublicAiProvider),
providers: rows.map((row) => toPublicAiProvider(row)),
pagination: {
total: totalCount,
pageSize,