Update EventsPage.tsx
This commit is contained in:
@@ -81,7 +81,6 @@ const EventsPage: React.FC = () => {
|
|||||||
<select
|
<select
|
||||||
value={selectedCategory}
|
value={selectedCategory}
|
||||||
onChange={(e) => setSelectedCategory(e.target.value)}
|
onChange={(e) => setSelectedCategory(e.target.value)}
|
||||||
className="bg-white border border-gray-300 rounded px-3 py-2"
|
|
||||||
>
|
>
|
||||||
<option value="">All Categories</option>
|
<option value="">All Categories</option>
|
||||||
{categories.map((category, index) => (
|
{categories.map((category, index) => (
|
||||||
@@ -94,7 +93,6 @@ const EventsPage: React.FC = () => {
|
|||||||
<select
|
<select
|
||||||
value={selectedLocation}
|
value={selectedLocation}
|
||||||
onChange={(e) => setSelectedLocation(e.target.value)}
|
onChange={(e) => setSelectedLocation(e.target.value)}
|
||||||
className="bg-white border border-gray-300 rounded px-3 py-2"
|
|
||||||
>
|
>
|
||||||
<option value="">All Locations</option>
|
<option value="">All Locations</option>
|
||||||
{locations.map((location, index) => (
|
{locations.map((location, index) => (
|
||||||
@@ -107,7 +105,6 @@ const EventsPage: React.FC = () => {
|
|||||||
<select
|
<select
|
||||||
value={selectedTime}
|
value={selectedTime}
|
||||||
onChange={(e) => setSelectedTime(e.target.value)}
|
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="">All Times</option>
|
||||||
<option value="morning">Morning</option>
|
<option value="morning">Morning</option>
|
||||||
|
|||||||
Reference in New Issue
Block a user