mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-09-14 06:05:31 -04:00
properly set hrefs for dynamic paths on notes list
This commit is contained in:
@@ -100,23 +100,24 @@ const ContactForm = () => {
|
||||
{({ setFieldValue, isSubmitting, touched, errors }) => (
|
||||
<Form className={styles.form} name="contact">
|
||||
<Field
|
||||
type="text"
|
||||
name="name"
|
||||
placeholder="Name"
|
||||
className={cx({ missing: errors.name && touched.name })}
|
||||
name="name"
|
||||
type="text"
|
||||
placeholder="Name"
|
||||
disabled={success}
|
||||
/>
|
||||
<Field
|
||||
type="email"
|
||||
name="email"
|
||||
placeholder="Email"
|
||||
className={cx({ missing: errors.email && touched.email })}
|
||||
name="email"
|
||||
type="email"
|
||||
inputmode="email"
|
||||
placeholder="Email"
|
||||
disabled={success}
|
||||
/>
|
||||
<Field
|
||||
className={cx({ missing: errors.message && touched.message })}
|
||||
component="textarea"
|
||||
name="message"
|
||||
component="textarea"
|
||||
placeholder="Write something..."
|
||||
disabled={success}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user