minor db index work
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 4m22s

This commit is contained in:
2025-12-03 21:54:11 -08:00
parent 0f8fd255d5
commit 729bf3990e

View File

@@ -11,7 +11,7 @@ interface AddressFormProps {
isGeocoding: boolean;
}
export const AddressForm: React.FC<AddressFormProps> = ({ address, onAddressChange, isGeocoding }) => {
export const AddressForm: React.FC<AddressFormProps> = ({ address, onAddressChange, onGeocode, isGeocoding }) => {
const handleInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
const { name, value } = e.target;
onAddressChange(name as keyof Address, value);