mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 14:11:13 -05:00
Fix Select.Item value prop error
This commit is contained in:
@@ -202,7 +202,6 @@ export function LocationTab() {
|
|||||||
<SelectValue placeholder="Select your location" />
|
<SelectValue placeholder="Select your location" />
|
||||||
</SelectTrigger>
|
</SelectTrigger>
|
||||||
<SelectContent>
|
<SelectContent>
|
||||||
<SelectItem value="">No location selected</SelectItem>
|
|
||||||
{locations.map((location) => (
|
{locations.map((location) => (
|
||||||
<SelectItem key={location.id} value={location.id}>
|
<SelectItem key={location.id} value={location.id}>
|
||||||
{location.name}
|
{location.name}
|
||||||
|
|||||||
Reference in New Issue
Block a user