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;