Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 0cabf13

Browse files
committed
Merge branch 'staging' into develop
2 parents 61e91a0 + 0d56a97 commit 0cabf13

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

components/common/Layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export default function Layout({children, seo, hasJsonLd}) {
3434
<BlogJsonLd
3535
url={seo?.canonical}
3636
title={seo?.title}
37-
images={[seo?.opengraphImage.sourceUrl]}
37+
images={[seo?.opengraphImage?.sourceUrl]}
3838
datePublished={seo?.opengraphPublishedTime}
3939
dateModified={seo?.opengraphModifiedTime}
4040
authorName={seo?.opengraphAuthor}

components/molecules/Form/Form.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import cn from 'classnames'
2+
import {Form as FormikForm, Formik} from 'formik'
3+
import PropTypes from 'prop-types'
14
import React from 'react'
2-
import {Formik, Form as FormikForm} from 'formik'
35
import styles from './Form.module.css'
4-
import PropTypes from 'prop-types'
5-
import cn from 'classnames'
66

77
/**
88
* Render Form component.
@@ -46,7 +46,7 @@ export default function Form({
4646
}
4747

4848
Form.propTypes = {
49-
children: PropTypes.oneOfType([PropTypes.func, PropTypes.element]),
49+
children: PropTypes.any,
5050
className: PropTypes.string,
5151
formDefaults: PropTypes.object,
5252
id: PropTypes.string,

package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"eslint": "^7.20.0",
5454
"eslint-config-prettier": "^7.2.0",
5555
"eslint-plugin-import": "^2.22.1",
56-
"eslint-plugin-jsdoc": "^32.0.1",
56+
"eslint-plugin-jsdoc": "^32.0.2",
5757
"eslint-plugin-jsx-a11y": "^6.4.1",
5858
"eslint-plugin-prettier": "^3.3.1",
5959
"eslint-plugin-react": "^7.22.0",

0 commit comments

Comments
 (0)