Update EventsPage.tsx

This commit is contained in:
Harini312821
2024-08-01 02:08:53 +08:00
parent 50d2d3dff6
commit b79bf441a2

View File

@@ -81,7 +81,6 @@ const EventsPage: React.FC = () => {
<select
value={selectedCategory}
onChange={(e) => setSelectedCategory(e.target.value)}
className="bg-white border border-gray-300 rounded px-3 py-2"
>
<option value="">All Categories</option>
{categories.map((category, index) => (
@@ -94,7 +93,6 @@ const EventsPage: React.FC = () => {
<select
value={selectedLocation}
onChange={(e) => setSelectedLocation(e.target.value)}
className="bg-white border border-gray-300 rounded px-3 py-2"
>
<option value="">All Locations</option>
{locations.map((location, index) => (
@@ -107,7 +105,6 @@ const EventsPage: React.FC = () => {
<select
value={selectedTime}
onChange={(e) => setSelectedTime(e.target.value)}
className="bg-white border border-gray-300 rounded px-3 py-2"
>
<option value="">All Times</option>
<option value="morning">Morning</option>