I implemented my autocomplete search via an Elasticsearch service and it works fine except that the text box freezes up after every key press, how do I prevent this?
My service is asynchronous and so is the API that it connects to. I am injecting the service into my web assembly app where the search takes place.
EDIT: It looks like the problem is due to the autocomplete being inside a SfSchedule template, when I move it outside it works fine. However im not sure how to get it working (without freezing every keypress) within the scheduler. I have also noted that the more entities(ie Appointments) loaded inside the scheduler , the slower the response time.