diff --git a/app/(root)/contact/page.tsx b/app/(root)/contact/page.tsx index 0bf5b2f..488939b 100644 --- a/app/(root)/contact/page.tsx +++ b/app/(root)/contact/page.tsx @@ -6,9 +6,7 @@ import clsx from 'clsx'; import React, { useState } from 'react'; const ContactPage = () => { - const [isSubmitted, setIsSubmitted] = useState( - localStorage?.getItem('isSubmitted') === 'true' ? true : false - ); + const [isSubmitted, setIsSubmitted] = useState(false); const [formData, setFormData] = useState({ name: '',