From 73bb8e982d58051d78c8b0338ad2ba79ec2e6c87 Mon Sep 17 00:00:00 2001 From: hardik Date: Sun, 19 Oct 2025 02:05:31 +0000 Subject: [PATCH] fix : textfiled --- src/components/BookingForm.tsx | 59 +++++++++++++++------------------- 1 file changed, 26 insertions(+), 33 deletions(-) diff --git a/src/components/BookingForm.tsx b/src/components/BookingForm.tsx index 4b418a42..a99ee162 100644 --- a/src/components/BookingForm.tsx +++ b/src/components/BookingForm.tsx @@ -74,41 +74,34 @@ export function BookingForm({ onSubmit }: BookingFormProps) { {/* Location Inputs */}
- - + + handleInputChange("pickup", e.target.value)} + required + className="w-full h-10 sm:h-11 px-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" + />
- - + + handleInputChange("dropoff", e.target.value)} + required + className="w-full h-10 sm:h-11 px-3 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500" + />
-- 2.40.1