chore(next): wires form submissions (#4982)

This commit is contained in:
Jacob Fletcher
2024-02-02 15:04:15 -05:00
committed by GitHub
parent 3ab8a8e25f
commit 147def5059
160 changed files with 251 additions and 209 deletions

View File

@@ -65,10 +65,12 @@ export function fieldReducer(state: FormState, action: FieldAction): FormState {
state[action.path] || ({} as FormField),
)
return {
const newState = {
...state,
[action.path]: newField,
}
return newState
}
case 'REMOVE_ROW': {