Fix form submission error

Co-authored-by: Ichitux <17677572+Ichitux@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-03-11 00:58:59 +00:00
parent 1aafe6c2c7
commit 6634a40743
2 changed files with 45 additions and 33 deletions

View File

@@ -1,16 +1,24 @@
{
"files": [],
"references": [{ "path": "./tsconfig.app.json" }, { "path": "./tsconfig.node.json" }],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"noImplicitAny": false,
"noUnusedParameters": false,
"skipLibCheck": true,
"allowJs": true,
"noImplicitAny": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": {
"@/*": [
"./src/*"
]
},
"skipLibCheck": true,
"strictNullChecks": false
}
}
},
"files": [],
"references": [
{
"path": "./tsconfig.app.json"
},
{
"path": "./tsconfig.node.json"
}
]
}