Remove debug output.

This commit is contained in:
Ivaylo Novakov 2021-12-03 15:51:33 +01:00
parent 1401f2b9e1
commit 52dd4f7cf1
No known key found for this signature in database
GPG Key ID: 06B9354AB08BE9C6
1 changed files with 2 additions and 2 deletions

View File

@ -43,12 +43,12 @@ export default function SelfServiceForm({ fieldsConfig, onSubmit, title, validat
<div>
<input
id={field.type === "hidden" ? null : field.name}
name={field.name+" THIS IS A TEST CHANGE"}
name={field.name}
type={field.type}
autoComplete={field.autoComplete}
onChange={formik.handleChange}
onBlur={formik.handleBlur}
value={getIn(formik.values, field.name)+" THIS IS A TEST CHANGE" ?? ""+" THIS IS A TEST CHANGE"}
value={getIn(formik.values, field.name) ?? ""}
className={classnames(
"appearance-none block w-full px-3 py-2 border rounded-md shadow-sm focus:outline-none sm:text-sm",
{