This commit is contained in:
eric
2026-03-11 23:17:16 -05:00
parent efe816915d
commit 51b88291ef
5 changed files with 16 additions and 23 deletions

View File

@@ -4,7 +4,7 @@ import { useState } from "react";
import { Link, useLocale, useTranslation } from "@/i18n/navigation";
import { cities } from "@/app/data/cities";
const CITY_OPTIONS = cities.map((c) => ({ value: c.name, label: `${c.emoji} ${c.name}` }));
const CITY_OPTIONS = cities.map((c) => ({ value: c.name, label: `${c.icon} ${c.name}` }));
export default function HostMeetupPage() {
const { t } = useTranslation("hostMeetup");