We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc977d commit cdb73f0Copy full SHA for cdb73f0
frontend/src/pages/Chat/components/CitySelectField.tsx
@@ -30,7 +30,7 @@ interface Props {
30
31
export default function CitySelectField({ setMessages }: Props) {
32
const [city, setCity] = useState<string | null>(null);
33
- let [invalidCity, setInvalidCity] = useState<boolean>(false);
+ const [invalidCity, setInvalidCity] = useState<boolean>(false);
34
const { initChat } = useMessages();
35
36
const handleCityChange = async (key: string | null) => {
0 commit comments