diff --git a/components/CardsLanding.tsx b/components/CardsLanding.tsx
index 97a7bb6..7de939f 100644
--- a/components/CardsLanding.tsx
+++ b/components/CardsLanding.tsx
@@ -19,37 +19,37 @@ const CardsLanding = (): JSX.Element => (
diff --git a/components/Dashboard.tsx b/components/Dashboard.tsx
index 430be47..479c86a 100644
--- a/components/Dashboard.tsx
+++ b/components/Dashboard.tsx
@@ -113,7 +113,7 @@ const Dashboard = ({
id="username"
type="text"
value={username || ''}
- onChange={(e) => setUsername(e.target.value)}
+ onChange={(event) => setUsername(event.target.value)}
/>
@@ -140,7 +140,7 @@ const Dashboard = ({
-
+
Your current plan
{planName}
diff --git a/components/Landing.tsx b/components/Landing.tsx
index b0b25f1..50a7a1b 100644
--- a/components/Landing.tsx
+++ b/components/Landing.tsx
@@ -20,7 +20,7 @@ const Landing = (): JSX.Element => (
(
-
+
@@ -60,7 +60,10 @@ const Landing = (): JSX.Element => (
-
+
diff --git a/components/MailingList.tsx b/components/MailingList.tsx
index b196ee4..318a6f4 100644
--- a/components/MailingList.tsx
+++ b/components/MailingList.tsx
@@ -14,7 +14,7 @@ const MailingList = (): JSX.Element => {
const [loading, setLoading] = useState(false);
const [valid, setValid] = useState(true);
- const validateEmail = () => {
+ const validateEmail = (): void => {
// Regex patern for email validation
const regex =
/^(([^\s"(),.:;<>@[\\\]]+(\.[^\s"(),.:;<>@[\\\]]+)*)|(".+"))@((\[(?:\d{1,3}\.){3}\d{1,3}])|(([\dA-Za-z\-]+\.)+[A-Za-z]{2,}))$/;
@@ -30,7 +30,7 @@ const MailingList = (): JSX.Element => {
}
};
- const subscribe = () => {
+ const subscribe = (): void => {
setLoading(true);
axios
.put('api/mailingList', {
@@ -52,7 +52,7 @@ const MailingList = (): JSX.Element => {
Stay Tuned
-
+
{
- setMail(e.target.value);
+ onChange={(event) => {
+ setMail(event.target.value);
}}
type="email"
placeholder="Your email"
className={`input input-primary input-bordered ${
- valid ? null : 'input-error'
+ valid ? '' : 'input-error'
}`}
/>