I'm trying to override the default ids that Downshift provides.
I tried passing the id through getInputProps()
like the docs suggest but it did not work.
{...getInputProps({ inputId: 'my-input-id' })}
Passing the id directly to the input did not work as well.
<input id='my-input-id />
In both cases, the id remains downshift-0-input
. Any ideas on how I can override this id?