From 5575e6c5f2b77301b813c0a01181e36c8506c0ea Mon Sep 17 00:00:00 2001 From: Ariful Alam Date: Fri, 13 Jan 2023 16:30:05 +0600 Subject: [PATCH] Add prop definition for resume and footer --- src/components/GitProfile.jsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/GitProfile.jsx b/src/components/GitProfile.jsx index 0bf9bed..a63054e 100644 --- a/src/components/GitProfile.jsx +++ b/src/components/GitProfile.jsx @@ -257,6 +257,9 @@ GitProfile.propTypes = { phone: PropTypes.string, email: PropTypes.string, }), + resume: PropTypes.shape({ + fileUrl: PropTypes.string, + }), skills: PropTypes.array, externalProjects: PropTypes.arrayOf( PropTypes.shape({ @@ -318,6 +321,7 @@ GitProfile.propTypes = { '--rounded-btn': PropTypes.string, }), }), + footer: PropTypes.string, }).isRequired, };