This commit is contained in:
Benjamin Toby
2025-06-04 08:43:16 +01:00
parent 1364074c2c
commit 761348de08
37 changed files with 577 additions and 140 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ export default async function apiGet<
let tableSchema: DSQL_TableSchemaType | undefined;
if (dbSchema) {
const targetTable = dbSchema.tables.find(
const targetTable = dbSchema.tables?.find(
(table) => table.tableName === tableName
);