(e)
| 103 | let {focusWithinProps} = useFocusWithin({ |
| 104 | ...props, |
| 105 | onFocusWithin(e) { |
| 106 | valueOnFocus.current = state.value; |
| 107 | props.onFocus?.(e); |
| 108 | }, |
| 109 | onBlurWithin: e => { |
| 110 | state.confirmPlaceholder(); |
| 111 | if (state.value !== valueOnFocus.current) { |
no test coverage detected