From 4f7f44ea22c4abc920b274ed003d4a1f57b0fd66 Mon Sep 17 00:00:00 2001 From: alexbainter Date: Sun, 3 Sep 2023 13:00:40 -0500 Subject: [PATCH] Fix lint errors --- src/library/library.jsx | 2 +- src/soft-ad/soft-ad.jsx | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/library/library.jsx b/src/library/library.jsx index a840e4e..b386d9f 100644 --- a/src/library/library.jsx +++ b/src/library/library.jsx @@ -10,7 +10,7 @@ const Library = () => { return ( <> - "Building Generative Music Systems" course available now + “Building Generative Music Systems” course available now { @@ -14,4 +15,9 @@ const SoftAd = ({ children, href }) => { ); }; +SoftAd.propTypes = { + children: propTypes.node.isRequired, + href: propTypes.string.isRequired, +}; + export default SoftAd;