Fix TS issue
This commit is contained in:
parent
0582dd40b2
commit
6f51843875
|
@ -216,7 +216,10 @@ export async function outputProcessing(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (opts.squash) {
|
if (opts.squash) {
|
||||||
enriched = await linkRows.squashLinksToPrimaryDisplay(table, enriched)
|
enriched = (await linkRows.squashLinksToPrimaryDisplay(
|
||||||
|
table,
|
||||||
|
enriched
|
||||||
|
)) as Row[]
|
||||||
}
|
}
|
||||||
return wasArray ? enriched : enriched[0]
|
return wasArray ? enriched : enriched[0]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue