From 150baea54ce388c9013629732708160052004ce8 Mon Sep 17 00:00:00 2001 From: Conner Davis Date: Sun, 31 Jul 2022 13:01:39 -0700 Subject: [PATCH] fix(component): remove "All Rights Reserved" from `` We shouldn't require this phrase to use the component. Now you can just add "All Rights Reserved" to the `` field, if you would like to. --- src/lib/components/Footer/FooterCopyright.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/components/Footer/FooterCopyright.tsx b/src/lib/components/Footer/FooterCopyright.tsx index d595497720..d22c8fe211 100644 --- a/src/lib/components/Footer/FooterCopyright.tsx +++ b/src/lib/components/Footer/FooterCopyright.tsx @@ -15,13 +15,12 @@ export const FooterCopyright: FC = ({ href, by, year }) => { © {year} {href ? ( - + {by} ) : ( {by} )} - . All Rights Reserved. );