690526:0905 ADR-023-229 dynamic prompt #02
CI / CD Pipeline / build (pull_request) Successful in 4m37s
CI / CD Pipeline / deploy (pull_request) Has been skipped

This commit is contained in:
2026-05-26 09:05:34 +07:00
parent fd3bee394c
commit b3d3f6db95
19 changed files with 499 additions and 244 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
# Frontend Patterns (Next.js)
## Form Handling
@@ -17,7 +16,7 @@ interface ProjectOption {
}
// Select options
const options = contracts.map(c => ({
const options = contracts.map((c) => ({
label: `${c.contractName} (${c.contractCode})`,
value: c.publicId!, // Use publicId, no fallback to id
}));