We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c60f4 commit 10761ccCopy full SHA for 10761cc
1 file changed
src/routes/table.ts
@@ -1,3 +1,4 @@
1
+// @ts-nocheck
2
import {
3
fetchPageById,
4
fetchTableData,
@@ -30,7 +31,7 @@ export const getTableData = async (
30
31
32
const tableArr: RowType[] =
33
table.result.reducerResults.collection_group_results.blockIds.map(
- (id: string) => table.recordMap.block[id]
34
+ (id: string) => table.recordMap.block[id]?.value
35
);
36
37
const tableData = tableArr.filter(
0 commit comments