From fc4692e479bf02ce714c3bf53ab658e4c18bed25 Mon Sep 17 00:00:00 2001 From: Nick Taylor Date: Thu, 8 Aug 2024 15:13:51 -0400 Subject: [PATCH] chore: fixed eslint issue --- components/sections/home-page/Newsletter.tsx | 62 ++++++++++---------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/components/sections/home-page/Newsletter.tsx b/components/sections/home-page/Newsletter.tsx index a8c61c6d6..2f4ef81f8 100644 --- a/components/sections/home-page/Newsletter.tsx +++ b/components/sections/home-page/Newsletter.tsx @@ -11,37 +11,37 @@ import StrokeR3 from '../../../public/background-strokes/_3_rightStroke.svg' import StrokeL3 from '../../../public/background-strokes/_3_leftStroke.svg' const Newsletter = () => { - const handleSubscribeClick = () => { - window.open("https://news.opensauced.pizza/#/portal/signup", "_blank"); - }; + const handleSubscribeClick = () => { + window.open('https://news.opensauced.pizza/#/portal/signup', '_blank') + } - return ( - -
-
- Doodles -
-
- Doodles -
-
-
- - $orange-to-yellowThe fast track$orange-to-yellow to open source - - - Stay up to date with the latest OpenSauced news and trends. - - - - -
-
- ) + return ( + +
+
+ Doodles +
+
+ Doodles +
+
+
+ + $orange-to-yellowThe fast track$orange-to-yellow to open source + + + Stay up to date with the latest OpenSauced news and trends. + + + + +
+
+ ) } export default Newsletter