minor db index work
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 4m22s
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 4m22s
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user