feat: update form logic for new platform
Node.js CI / Lint and Test (push) Successful in 26s

This commit is contained in:
2025-12-10 14:52:36 -08:00
parent 53274ec38c
commit 9d9d0809d7
4 changed files with 41 additions and 30 deletions
+3 -4
View File
@@ -4,9 +4,8 @@
* @author Naomi Carrigan
*/
/* eslint-disable @typescript-eslint/naming-convention -- Baserow uses snake case */
export interface FormSubmission {
table_id: number;
items: Array<{ id: number }>;
[key: string]: unknown;
id: number;
manualSort: number;
}