From 0696524d4c04afc83110ce277f1281f92ac7a91f Mon Sep 17 00:00:00 2001 From: Vaibhav Shinde Date: Wed, 23 Feb 2022 16:15:31 +0530 Subject: [PATCH 1/2] fix: lint issues in GridLink --- src/components/GridLink.jsx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/GridLink.jsx b/src/components/GridLink.jsx index 5ab5021be..c0db4b418 100644 --- a/src/components/GridLink.jsx +++ b/src/components/GridLink.jsx @@ -1,6 +1,7 @@ import React from 'react'; import clsx from 'clsx'; import Link from '@docusaurus/Link'; +import PropTypes from 'prop-types'; export default function GridLink({ Icon, @@ -27,3 +28,10 @@ export default function GridLink({ ); } + +GridLink.propTypes = { + Icon: PropTypes.element, + title: PropTypes.string, + subtitle: PropTypes.string, + className: PropTypes.string, +}; From 122499fd13fdb32b8046a3f0f6be228718555513 Mon Sep 17 00:00:00 2001 From: Vaibhav Shinde Date: Wed, 23 Feb 2022 16:30:40 +0530 Subject: [PATCH 2/2] chore: trigger release