warning updated

This commit is contained in:
akash 2026-03-17 18:20:46 +05:30
parent 73daea374c
commit 5503bc33b4

View File

@ -104,7 +104,7 @@ const FaqVideoSection = () => {
</div>
)}
<form className="faq-contact-form" onSubmit={handleSubmit}>
<form className="faq-contact-form" onSubmit={handleSubmit} suppressHydrationWarning>
<div className="row">
<div className="col-md-6 mb-20">
<label className="faq-form-label">Full Name</label>
@ -114,6 +114,7 @@ const FaqVideoSection = () => {
placeholder="Full Name"
value={formData.name}
onChange={handleChange}
suppressHydrationWarning
/>
{formErrors.name && <small className="faq-error">{formErrors.name}</small>}
</div>
@ -125,6 +126,7 @@ const FaqVideoSection = () => {
placeholder="Email Address"
value={formData.email}
onChange={handleChange}
suppressHydrationWarning
/>
{formErrors.email && <small className="faq-error">{formErrors.email}</small>}
</div>
@ -136,6 +138,7 @@ const FaqVideoSection = () => {
placeholder="Phone Number"
value={formData.phone}
onChange={handleChange}
suppressHydrationWarning
/>
{formErrors.phone && <small className="faq-error">{formErrors.phone}</small>}
</div>
@ -146,6 +149,7 @@ const FaqVideoSection = () => {
value={formData.service}
onChange={handleChange}
className="faq-select"
suppressHydrationWarning
>
<option value="">Select Service</option>
<option value="Website Development">Website Development</option>
@ -165,6 +169,7 @@ const FaqVideoSection = () => {
rows={5}
value={formData.message}
onChange={handleChange}
suppressHydrationWarning
></textarea>
{formErrors.message && <small className="faq-error">{formErrors.message}</small>}
</div>