You can try add a { delay: null } in the userEvent.type(searchComp, 'ABC');:
{ delay: null }
userEvent.type(searchComp, 'ABC');
userEvent.type(searchComp, 'ABC', { delay: null });
Work for me in some cases, I'm using react 18, jest 29 and @testing-library/user-event 14