import { getFieldStore } from'../utils';
/**
* Focuses the specified field of the form.
*
* @param form The form of the field.
* @param name The name of the field.
*/
export functionfocus(form, name) {
getFieldStore(form, name)?.elements.peek()[0]?.focus();
}