diff --git a/src/app/components/AddressSuggestions.tsx b/src/app/components/AddressSuggestions.tsx index b2ae2e8..e2f5986 100644 --- a/src/app/components/AddressSuggestions.tsx +++ b/src/app/components/AddressSuggestions.tsx @@ -1,4 +1,5 @@ import React, { useState, useRef, ChangeEvent, useEffect } from 'react'; +import Input from '@/app/components/Input'; interface AddressSuggestionsProps { address: string; @@ -98,15 +99,14 @@ const AddressSuggestions: React.FC = ({ address, setAdd }, [postcode, setCity]); return ( -
- - + {showSuggestions && addressSuggestions.length > 0 && (